export interface DtoCost { currency: string; currencyDivisor: number; discount: number; fee: number; feePct: number; fixed?: number; fx?: number; max?: number; min?: number; } export declare function instanceOfDtoCost(value: object): value is DtoCost; export declare function DtoCostFromJSON(json: any): DtoCost; export declare function DtoCostFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoCost; export declare function DtoCostToJSON(json: any): DtoCost; export declare function DtoCostToJSONTyped(value?: DtoCost | null, ignoreDiscriminator?: boolean): any;