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