import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface DropdownMenuSearchProps extends ComposableProps<'div'> { /** * Search placeholder * @default 'Search' */ placeholder?: string; /** * Custom search input (when using asChild) */ children?: React.ReactNode; } /** * DropdownMenuSearch Component * * A composable component for search input in a DropdownMenu. * Typically used at the top of DropdownMenu when property is 'search' or 'search-segmented'. * * @public * * @example * ```tsx * * * * Option 1 * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically filters options based on search query. */ export declare const DropdownMenuSearch: React.ForwardRefExoticComponent>; //# sourceMappingURL=DropdownMenuSearch.d.ts.map