import { JSX } from "solid-js/jsx-runtime"; type TextInputProps = { ref: HTMLTextAreaElement | ((el: HTMLTextAreaElement) => void) | undefined; onInput: (value: string) => void; onSend: () => void; fontSize?: number; disabled?: boolean; value?: string; } & Omit, "onInput">; export declare const TextInput: (props: TextInputProps) => JSX.Element; export {}; //# sourceMappingURL=TextInput.d.ts.map