import type { HttpRequestError } from "../../common/index.js";
import type { BeamTokenLimits, BeamTokenRoutes } from "../../types/beam.js";
export type GetBeamTokenLimitsErrorType = HttpRequestError;
export type GetBeamTokenLimitsReturnType = Promise<BeamTokenLimits[]>;
export type GetBeamTokenLimitsArgs = {
    route: BeamTokenRoutes;
    direction: "deposit" | "withdraw";
};
/**
 * Returns a list of the tokens that can have unified balances
 */
export declare function getBeamTokenLimits(args: GetBeamTokenLimitsArgs): GetBeamTokenLimitsReturnType;
//# sourceMappingURL=getBeamTokenLimits.d.ts.map