import { type ComponentType } from '../../model/ComponentType'; import { type ControlProps } from '../../model/ControlProps'; import { type PlaceholderProps } from '../../model/PlaceholderProps'; export interface SearchInputProps extends ComponentType, ControlProps, PlaceholderProps { autoFocus?: boolean; onFocus?: () => void; } export declare const SearchInput: import("@redneckz/uni-jsx").UNIComponent;