import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: string; file: File; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ImageViewFileDialogProps = typeof __propDef.props; export type ImageViewFileDialogEvents = typeof __propDef.events; export type ImageViewFileDialogSlots = typeof __propDef.slots; export default class ImageViewFileDialog extends SvelteComponentTyped { } export {};