import { type IUIComponentHandler, type UIComponent } from "../types"; import * as UI from ".."; type $$ComponentProps = { component: UIComponent & { properties: Partial; }; onPropertyChange: (updates: Partial<{ properties?: string | object; name?: string; access?: string; eventHandler?: IUIComponentHandler; }>) => void; forConstructor?: boolean; }; declare const VideoViewerProps: import("svelte").Component<$$ComponentProps, {}, "">; type VideoViewerProps = ReturnType; export default VideoViewerProps;