import type { Page } from 'playwright-core'; declare const SCREENSHOT_MIME_TYPE = "image/png"; type Screenshot_capture_opts = { base_dir: string; base64?: boolean; full_page?: boolean; path?: string; }; type Screenshot_capture_result = { base64?: string; full_page: boolean; mime_type: string; path?: string; }; declare const get_screenshot_base_dir: (daemon_base_dir: string) => string; declare const create_screenshot_name: () => string; declare const resolve_screenshot_path: (base_dir: string, file_path: string | undefined) => string; declare const take_screenshot: (page: Page, opts: Screenshot_capture_opts) => Promise; export { create_screenshot_name, get_screenshot_base_dir, resolve_screenshot_path, SCREENSHOT_MIME_TYPE, take_screenshot, }; export type { Screenshot_capture_opts, Screenshot_capture_result, }; //# sourceMappingURL=screenshot.d.ts.map