import type { ResolvedControlProps } from "../../renderingRules"; import type { SearchControlConfig } from "../../types"; type MenuSearchProps = Readonly<{ config: SearchControlConfig; resolved: ResolvedControlProps; }>; /** * Renders a search control within a menu context. * Uses FormGroup to match label styling with SelectField and other form components. * Purely presentational -- all rendering decisions come from resolved props. * * @internal */ export declare const MenuSearch: ({ config, resolved: _resolved }: MenuSearchProps) => import("react/jsx-runtime").JSX.Element; export {};