import { RubicSdkError } from '..';
/**
 * Thrown, when contract is not whitelisted on proxy contract.
 */
export declare class UnapprovedContractError extends RubicSdkError {
    readonly contract: string;
    constructor(contract: string);
}
