//#region src/deprecated/FilteredSearch/FilteredSearch.d.ts
type FilteredSearchProps = React.HTMLAttributes<HTMLElement>;
/**
 * @deprecated A new filter component is in progress.
 * Until the new filter component is ready, you can use Button + TextInput + ActionList to reproduce this pattern.
 */
declare function FilteredSearch({
  children,
  className,
  ...rest
}: FilteredSearchProps): import("react").JSX.Element;
//#endregion
export { type FilteredSearchProps, FilteredSearch as default };