import { SvelteComponent } from "svelte"; export declare const FORM_CTX: INPUT_CONFIG; import type { INPUT_CONFIG, INPUT_VARIANT } from "../types"; declare const __propDef: { props: { [x: string]: any; method?: "GET" | "POST" | undefined; animate?: INPUT_CONFIG["animate"]; inputGrow?: boolean | undefined; labelClasses?: string | undefined; inputReset?: boolean | undefined; rounded?: INPUT_CONFIG["rounded"]; inputSize?: "sm" | "md" | "lg" | "xl" | "none" | undefined; inputVariant?: INPUT_VARIANT | undefined; }; events: { submit: SubmitEvent; reset: Event; change: Event; input: Event; } & { [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 SvelteComponent { } export {};