type Props = {
    baseUrl?: string;
    currencyFromId?: string;
    providers: string[];
    additionalCoinsFlag?: boolean;
};
export type ResponseData = {
    currencyGroups: CurrencyGroup[];
};
type CurrencyGroup = {
    network: string;
    supportedCurrencies: string[];
};
export declare function fetchCurrencyTo({ baseUrl, currencyFromId, providers, additionalCoinsFlag, }: Props): Promise<string[]>;
export {};
//# sourceMappingURL=fetchCurrencyTo.d.ts.map