import type { Command, CommandGenerator } from '../../../types';
import type { SharedBrowserCommandOptions } from '../browserOptions';
export type RecordVideoOptions = {
    /**, stagehandLogger
     * Path to the directory to put videos into.
     */
    dir: string;
};
export declare class ActCommand implements Command {
    private _debug;
    private debug;
    execute(query: string, options: SharedBrowserCommandOptions): CommandGenerator;
    private performAction;
}
