import React from "react"; export interface CommandItem { id: string; label: string; icon?: React.ReactNode; onSelect?: () => void; shortcut?: string; disabled?: boolean; } export interface GlassCommandBarProps extends React.HTMLAttributes { items?: CommandItem[]; position?: "top" | "bottom"; /** * Whether to respect motion preferences for animations */ respectMotionPreference?: boolean; } export declare const GlassCommandBar: React.ForwardRefExoticComponent>; export default GlassCommandBar; //# sourceMappingURL=GlassCommandBar.d.ts.map