import { TextInputProps } from "../TextInput/TextInput.js"; import React from "react"; //#region src/FilteredActionList/FilteredActionListInput.d.ts interface FilteredActionListInputProps extends Partial> { inputRef: React.Ref; onInputChange?: (e: React.ChangeEvent) => void; onInputKeyPress?: React.KeyboardEventHandler; onInputKeyDown?: React.KeyboardEventHandler; placeholderText?: string; listId: string; inputDescriptionTextId: string; loading: boolean; fullScreenOnNarrow?: boolean; } declare function FilteredActionListInput({ inputRef, value, onInputChange, onInputKeyPress, onInputKeyDown, placeholderText, listId, inputDescriptionTextId, loading, fullScreenOnNarrow, className, ...restTextInputProps }: FilteredActionListInputProps): React.JSX.Element; //#endregion export { FilteredActionListInput, FilteredActionListInputProps };