/** @jsxImportSource @opentui/react */ import type { ReactNode } from "react"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export interface SearchBarProps { readonly theme: Theme; readonly query: string; readonly matchCount: number; readonly activeOrdinal: number; readonly onQueryChange: (value: string) => void; readonly onSubmit: () => void; readonly editing: boolean; } export declare function SearchBar(props: SearchBarProps): ReactNode;