import * as React from 'react'; interface CommandBarProps extends React.PropsWithChildren { open?: boolean; onOpenChange?: (open: boolean) => void; defaultOpen?: boolean; disableAutoFocus?: boolean; } interface CommandProps extends Omit, 'children' | 'onClick'> { action: () => void | Promise; label: string; shortcut: string; } declare const CommandBar: { ({ open, onOpenChange, defaultOpen, disableAutoFocus, children, }: CommandBarProps): React.JSX.Element; displayName: string; } & { Command: React.ForwardRefExoticComponent>; Value: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; Bar: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; Separator: React.ForwardRefExoticComponent, HTMLDivElement>, "ref">, "children"> & React.RefAttributes>; }; export { CommandBar };