import { SvelteComponentTyped } from "svelte"; import type { FormControlsType } from '../../types/types'; declare const __propDef: { props: { [x: string]: any; label?: string | undefined; id?: string | undefined; value?: string | undefined; formControls?: FormControlsType | undefined; name?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type HtmlFieldProps = typeof __propDef.props; export type HtmlFieldEvents = typeof __propDef.events; export type HtmlFieldSlots = typeof __propDef.slots; export default class HtmlField extends SvelteComponentTyped { } export {};