import { ResponseData as ResponseDataTo } from "./fetchCurrencyTo";
import { ResponseData as ResponseDataFrom } from "./fetchCurrencyFrom";
type Props = {
    baseUrl?: string;
    additionalCoinsFlag?: boolean;
    providers: string[];
};
export type ResponseDataAll = {
    from: ResponseDataFrom["currencyGroups"];
    to: ResponseDataTo["currencyGroups"];
};
export declare function fetchCurrencyAll({ baseUrl, providers, additionalCoinsFlag, }: Props): Promise<string[]>;
export {};
//# sourceMappingURL=fetchCurrencyAll.d.ts.map