import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        heading?: string | undefined;
        description?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    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<TuiFormProps, TuiFormEvents, TuiFormSlots> {
}
export {};
