export interface CustomTariff { _id: string; name: string; privilegeId: string; serviceKey: string; description: string; type: "day" | "count"; value: PrivilegeValueType; price: number; updatedAt: string; isDeleted: boolean; createdAt: string; }; export type CustomTariffsMap = Record; export type PrivilegeValueType = "шаблон" | "день" | "МБ"; export type CustomTariffUserValues = Record; export type CustomTariffUserValuesMap = Record; export type SummaryPriceMap = Record;