import type { Balance, BalanceOptions } from '../types'; /** * Wraps a balance fetcher that does not support {@link BalanceOptions} * * @param getBalance function that returns {@link Balance}[] without applying options * @param options must be undefined; any defined value is rejected * @returns the promise returned by {@link getBalance} * @throws an {@link InvalidParameterError} when {@link options} is provided */ export declare function rejectBalanceOptions(getBalance: () => Promise, options?: BalanceOptions): Promise; //# sourceMappingURL=rejectBalanceOptions.d.ts.map