export declare const DtoPriceType: { readonly PriceTypeFixed: "FIXED"; readonly PriceTypeRange: "RANGE"; }; export type DtoPriceType = typeof DtoPriceType[keyof typeof DtoPriceType]; export declare function instanceOfDtoPriceType(value: any): boolean; export declare function DtoPriceTypeFromJSON(json: any): DtoPriceType; export declare function DtoPriceTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoPriceType; export declare function DtoPriceTypeToJSON(value?: DtoPriceType | null): any; export declare function DtoPriceTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DtoPriceType;