import { TextInputState } from './use-text-input-state.svelte.js'; export type UseTextInputProps = { isDisabled?: () => boolean | undefined; state: TextInputState; placeholder?: string; }; export type UseTextInputResult = { inputValue: () => string; }; export declare const useTextInput: ({ isDisabled, state, placeholder, }: UseTextInputProps) => UseTextInputResult; //# sourceMappingURL=use-text-input.d.ts.map