import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: string; file: File; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type DocxViewFileDialogProps = typeof __propDef.props; export type DocxViewFileDialogEvents = typeof __propDef.events; export type DocxViewFileDialogSlots = typeof __propDef.slots; export default class DocxViewFileDialog extends SvelteComponentTyped { } export {};