import { SvelteComponentTyped } from "svelte"; import type { validate, handleSubmit, initValue } from '../types'; declare const __propDef: { props: { initValues?: initValue | undefined; validate?: validate | undefined; handleSubmit?: handleSubmit | undefined; handleChange?: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type FastFormProps = typeof __propDef.props; export declare type FastFormEvents = typeof __propDef.events; export declare type FastFormSlots = typeof __propDef.slots; export default class FastForm extends SvelteComponentTyped { } export {};