interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } type $$__sveltets_2_PropsWithChildren = Props & (Slots extends { default: any; } ? Props extends Record ? any : { children?: any; } : {}); declare const Hint: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{ /** * The name of the form control. * * @remarks Can be omitted when using a wrapping HintGroup setting the `for` property. * @example * ``` svelte * * HINT * ``` * OR * ``` svelte * * * HINT * * ``` */ for?: string; /** The name of useForm instance */ form?: string; /** `class` of the underlying html element */ class?: string; /** `id` of the underlying html element */ id?: string | undefined; /** The name of the error that should show this hint */ on?: string; /** Hides this hint when the given validator is triggered */ hideWhen?: string; /** Does the same thing as `hideWhen="required"` */ hideWhenRequired?: boolean; /** Show the hint even when the field is untouched */ showWhenUntouched?: boolean; }, { default: { value: any; }; }>, { [evt: string]: CustomEvent; }, { default: { value: any; }; }, {}, string>; type Hint = InstanceType; export default Hint;