import type { ShowControlsState } from '../controls'; import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = HTMLAttributes & { controls_config: ShowControlsState; filename?: string; fullscreen?: boolean; fullscreen_toggle?: boolean; fullscreen_bg_css_var?: string; on_fullscreen_change?: (fullscreen: boolean) => void; wrapper?: HTMLDivElement; children?: Snippet; }; declare const ViewerChrome: import("svelte").Component<$$ComponentProps, {}, "fullscreen">; type ViewerChrome = ReturnType; export default ViewerChrome;