import { type ComponentType } from '../../model/ComponentType'; export interface SearchBarInnerProps extends ComponentType { searchTerm?: string; onSearch: (_: string) => void; } export declare const SearchBar: import("@redneckz/uni-jsx").UNIComponent;