import type { LC } from '@use-gpu/live'; export type ScreenshotProps = { once?: boolean; type?: string; onBlob?: (blob: Blob) => void; onDataURL?: (dataUrl: string) => void; }; export declare const Screenshot: LC;