import { RubicSdkError } from '../rubic-sdk.error';
/**
 * Thrown, when user doesn't have enough balance.
 */
export declare class InsufficientFundsError extends RubicSdkError {
    readonly symbol: string;
    /**
     * @param symbol Token symbol.
     */
    constructor(symbol: string);
}
