export type ExchangeProvider = {
    id: string;
    name: string;
    supportedOrders: {
        sell?: {
            fee: number;
            max?: number;
            min?: number;
        };
        buy?: {
            fee: number;
            max?: number;
            min?: number;
        };
    };
    appId: string;
    logo: string;
    supportUrl?: string;
};
//# sourceMappingURL=provider.d.ts.map