import { AbstractEntity } from '../../../abstractEntity'; export declare enum CompanyTypeEnum { UNKNOWN = "UKW", MSP_CUSTOMER = "MSP", VAR_CUSTOMER = "VAR", ARROW = "ARW" } export declare enum RateTypeEnum { DISCOUNT = "discount", DISCOUNT_UNPROTECTED = "discountUnprotected", UPLIFT = "uplift" } declare type RateType = { id: number; name: RateTypeEnum; }; declare type CompanyType = { id: number; type: CompanyTypeEnum; }; export declare type GetPricingRateData = { id: number; rate: number; start_date: string; end_date: string | null; created_at: string; rateType: RateType; companyType: CompanyType; }; export declare class GetPricingRateResult extends AbstractEntity { #private; constructor(data: GetPricingRateData); toJSON(): GetPricingRateData; } export {};