import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { frameId: string; showCommands: boolean; }; events: { 'chromeframe:hide': Event | MouseEvent | UIEvent | PointerEvent | KeyboardEvent | ProgressEvent | FocusEvent | ClipboardEvent | AnimationEvent | InputEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; 'chromeframe:close': Event | MouseEvent | UIEvent | PointerEvent | KeyboardEvent | ProgressEvent | FocusEvent | ClipboardEvent | AnimationEvent | InputEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type ChromeFrameProps = typeof __propDef.props; export type ChromeFrameEvents = typeof __propDef.events; export type ChromeFrameSlots = typeof __propDef.slots; export default class ChromeFrame extends SvelteComponentTyped { get frameId(): string; /**accessor*/ set frameId(_: string); get showCommands(): boolean; /**accessor*/ set showCommands(_: boolean); } export {};