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