export interface WebActionAuthorizationInput { root: string; taskId?: string; actor: string; action: string; command?: string; paths?: string[]; confirmed?: boolean; } export declare function authorizeWebAction({ root, taskId, actor, action, command, paths, confirmed, }: WebActionAuthorizationInput): Promise; export declare const WEB_ACTION_AUTHORIZED_EVENT = "WEB_ACTION_AUTHORIZED";