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
*