import { type FC, type KeyboardEvent, type ChangeEventHandler, type InputHTMLAttributes } from 'react'; import '../styles/components/search-input.scss'; type Props = { /** * The value to display in the text input. */ value?: string; /** * Value change callback for the text input component. */ onChange?: ChangeEventHandler; /** * Key pressed callback for the text input component. */ onKeyDown?: (event: KeyboardEvent) => void; /** * Text to place in the text input component in the absence of value. */ placeholder?: string; /** * Text to place in the text input component in the absence of value. */ isLoading?: boolean; } & InputHTMLAttributes; declare const SearchInput: FC; export default SearchInput; //# sourceMappingURL=search-input.d.ts.map