export default TextInput; type TextInput = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A generic, single-line text field. The equivalent of the HTML `` element. * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/text * @see https://w3c.github.io/aria/#textbox */ declare const TextInput: import("svelte").Component, {}, "value" | "element">; type Props = { /** * Input value. */ value?: string | undefined; /** * Whether to autocomplete emojis when the user * types a shortcode, like `:smi`. */ useEmojiAutocomplete?: boolean | undefined; }; import type { TextInputProps } from '../../typedefs'; import type { InputEventHandlers } from '../../typedefs';