import { SvelteComponentTyped } from "svelte"; import type { FormControlType } from '../../types/types'; declare const __propDef: { props: { [x: string]: any; formControls?: { [key: string]: FormControlType; } | undefined; }; events: { submit: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type FormProps = typeof __propDef.props; export type FormEvents = typeof __propDef.events; export type FormSlots = typeof __propDef.slots; export default class Form extends SvelteComponentTyped { } export {};