import { PrivilegeWithAmount, PrivilegeWithoutPrice } from "./privilege"; export type CustomTariffUserValues = Record; export type CustomTariffUserValuesMap = Record; export type SummaryPriceMap = Record; export interface CustomTariff { name: string; price?: number; isCustom: boolean; privilegies: PrivilegeWithAmount[]; updatedAt?: string; isDeleted?: boolean; createdAt?: string; } export type CreateTariffBody = Omit & { privilegies: PrivilegeWithoutPrice[]; };