/** * This file was auto-generated by Fern from our API Definition. */ /** * [Deprecated] Whether to capture the current viewport or whole page. Use visualAnalysis.scope instead. Only viewport is currently supported when used directly. */ export type ScreenshotConfigScope = "viewport" | "page" | "scan" | "auto"; export declare const ScreenshotConfigScope: { readonly Viewport: "viewport"; readonly Page: "page"; readonly Scan: "scan"; readonly Auto: "auto"; };