import { Operator, ScreenshotOutput, ExecuteParams, ExecuteOutput } from '@ui-tars/sdk/core';

declare class NutJSOperator extends Operator {
    static MANUAL: {
        ACTION_SPACES: string[];
    };
    screenshot(): Promise<ScreenshotOutput>;
    execute(params: ExecuteParams): Promise<ExecuteOutput>;
}

export { NutJSOperator };
