import { EProvider } from '../enums/provider.enum';
import { ESMSBillingMode, ESMSType } from '../enums/sms/sms.enum';
type ProductRate = {
    fee: number;
    inactive?: boolean;
};
type ProductGroup = {
    providerCode: EProvider;
    title: string;
    products: Record<number, Record<ESMSType | ESMSBillingMode.twoWay, ProductRate>>;
};
export declare const TWO_WAY_SMS_UNIT_PRICE = 8.5;
export declare const ProductsConfig: Record<string, ProductGroup>;
export {};
