export interface DtoPrice { currency: string; currencyDivisor: number; fee: number; fixed?: number; fx?: number; increment?: number; margin?: number; max?: number; min?: number; suggestedFixed?: number; suggestedFx?: number; } export declare function instanceOfDtoPrice(value: object): value is DtoPrice; export declare function DtoPriceFromJSON(json: any): DtoPrice; export declare function DtoPriceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoPrice; export declare function DtoPriceToJSON(json: any): DtoPrice; export declare function DtoPriceToJSONTyped(value?: DtoPrice | null, ignoreDiscriminator?: boolean): any;