import { SvelteComponent } from "svelte"; declare const __propDef: { props: { csrf: string; name?: string; action?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type FileFormProps = typeof __propDef.props; export type FileFormEvents = typeof __propDef.events; export type FileFormSlots = typeof __propDef.slots; export default class FileForm extends SvelteComponent { } export {};