import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; heading?: string | undefined; description?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type TuiFormProps = typeof __propDef.props; export type TuiFormEvents = typeof __propDef.events; export type TuiFormSlots = typeof __propDef.slots; export default class TuiForm extends SvelteComponent { } export {};