import { CustomPrivilegeWithAmount } from "./privilege"; type ServiceKey = string; export type PrivilegeWithoutPrice = Omit; export type CustomTariffUserValues = Record; export type CustomTariffUserValuesMap = Record; export type ServiceKeyToPriceMap = Record; export interface CreateTariffBody { name: string; price?: number; isCustom: boolean; privileges: PrivilegeWithoutPrice[]; }