import React from "react"; export interface LiquidGlassCommandItem { id: string; label: string; description?: string; group?: string; icon?: React.ReactNode; shortcut?: React.ReactNode; disabled?: boolean; onSelect?: () => void; } export interface LiquidGlassCommandSurfaceProps extends React.HTMLAttributes { open: boolean; onOpenChange?: (open: boolean) => void; items: LiquidGlassCommandItem[]; placeholder?: string; } export declare const LiquidGlassCommandSurface: React.ForwardRefExoticComponent>; //# sourceMappingURL=LiquidGlassCommandSurface.d.ts.map