import type { InputControllerConfig } from './index'; type $$ComponentProps = { class: string; label: string; value: string; onChange: (newValue: string) => void; config?: InputControllerConfig; description?: string; onFocus?: () => void; }; declare const TextAreaInputController: import("svelte").Component<$$ComponentProps, {}, "value">; type TextAreaInputController = ReturnType; export default TextAreaInputController;