export interface BrowserControlCommand { id: string; tabId: string; action: string; args: Record; } /** Reports document readiness so the controller can gate and await navigation. */ export declare const pageStateScript: string; /** Brings an element into view before the host captures a screenshot. */ export declare function scrollIntoViewScript(selector: string, referenceChannel?: string): string; /** Builds the page script that fulfils a browser control command. */ export declare function actionScript(command: BrowserControlCommand, referenceChannel?: string): string; //# sourceMappingURL=page-scripts.d.ts.map