import { Account } from 'viem';
interface OperatorOptions {
    account?: Account;
    rpcUrl: string;
    verbose?: boolean;
    tempDir?: string;
    local?: boolean;
    watch?: boolean;
}
/**
 * Runs the central NAVS operator that listens for all tasks
 */
export declare function runOperator(options: OperatorOptions): Promise<void>;
export {};
