import React from "react"; export interface LiquidGlassSearchResult { id: string; label: string; description?: string; group?: string; } export interface LiquidGlassSearchFieldProps extends Omit, "onSelect" | "results"> { value?: string; onValueChange?: (value: string) => void; onSelect?: (result: LiquidGlassSearchResult) => void; placeholder?: string; placement?: "bottom" | "top-trailing" | "center" | "auto"; minimized?: boolean; onMinimizedChange?: (minimized: boolean) => void; suggestions?: string[]; results?: LiquidGlassSearchResult[]; scope?: string; } export declare const LiquidGlassSearchField: React.ForwardRefExoticComponent>; //# sourceMappingURL=LiquidGlassSearchField.d.ts.map