import type { InputControllerConfig } from './index'; 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; } declare const TextInputController: $$__sveltets_2_IsomorphicComponent<{ /** * Component props */ label: string; value: string; onChange: (newValue: string) => void; config?: InputControllerConfig; type?: "text" | "email" | "url"; placeholder?: string; description?: string | undefined; onFocus?: () => void; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type TextInputController = InstanceType; export default TextInputController;