import type React from 'react';
import type { TextInputProps } from '../TextInput';
export interface FilteredActionListInputProps extends Partial<Omit<TextInputProps, 'onChange' | 'onKeyDown'>> {
    inputRef: React.RefObject<HTMLInputElement | null>;
    onInputChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
    onInputKeyPress?: React.KeyboardEventHandler<HTMLInputElement>;
    onInputKeyDown?: React.KeyboardEventHandler<HTMLInputElement>;
    placeholderText?: string;
    listId: string;
    inputDescriptionTextId: string;
    loading: boolean;
    fullScreenOnNarrow?: boolean;
}
export declare function FilteredActionListInput({ inputRef, value, onInputChange, onInputKeyPress, onInputKeyDown, placeholderText, listId, inputDescriptionTextId, loading, fullScreenOnNarrow, className, ...restTextInputProps }: FilteredActionListInputProps): React.JSX.Element;
//# sourceMappingURL=FilteredActionListInput.d.ts.map