/** * This file was auto-generated by Fern from our API Definition. */ /** * Format of the screenshot response. 'base64' returns the image as base64-encoded data. 'url' uploads the screenshot to asset storage and returns a signed download URL. Defaults to 'base64' for viewport scope, 'url' for other scopes. */ export type ScreenshotConfigFormat = "base64" | "url"; export declare const ScreenshotConfigFormat: { readonly Base64: "base64"; readonly Url: "url"; };