/** @typedef {typeof __propDef.props} FastFormProps */ /** @typedef {typeof __propDef.events} FastFormEvents */ /** @typedef {typeof __propDef.slots} FastFormSlots */ export default class FastForm extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type FastFormProps = typeof __propDef.props; export type FastFormEvents = typeof __propDef.events; export type FastFormSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};