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<HTMLDivElement> {
    items?: CommandItem[];
    position?: "top" | "bottom";
    /**
     * Whether to respect motion preferences for animations
     */
    respectMotionPreference?: boolean;
}
export declare const GlassCommandBar: React.ForwardRefExoticComponent<GlassCommandBarProps & React.RefAttributes<HTMLDivElement>>;
export default GlassCommandBar;
//# sourceMappingURL=GlassCommandBar.d.ts.map