import type { PluginOption } from 'vite'; import type { UiContextCaptureIntegration } from './integrations/types'; import type { ScreenshotOptions, UiContextCaptureClientOptions } from './options'; export interface UiContextCaptureOptions extends UiContextCaptureClientOptions { enabled?: boolean; integrations?: UiContextCaptureIntegration[]; screenshot?: ScreenshotOptions; } export declare function uiContextCapture(options?: UiContextCaptureOptions): PluginOption[];