import { WhitelistType, Tx } from '.';
export interface IDerivativeWhitelisted {
    hasPermission(category: WhitelistType, wallet: any): Promise<boolean>;
    enableMaintenanceWhitelist(gasPrice?: number, enable?: boolean): Promise<Tx | null>;
    addBotToWhiteList(botAddress: string, gasPrice?: number): Promise<Tx | null>;
}
