import { ForwardRefExoticComponent, RefAttributes, ComponentProps, ReactNode } from 'react'; import { Command as CommandPrimitive } from 'cmdk'; import { Dialog } from '../dialog/dialog'; declare const Command: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit, 'children'> & { children?: ReactNode; title?: string; description?: string; className?: string; showCloseButton?: boolean; }): ReactNode; declare const CommandInput: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare const CommandList: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare const CommandEmpty: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare const CommandGroup: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare const CommandSeparator: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare const CommandItem: ForwardRefExoticComponent, 'ref'> & RefAttributes>; declare const CommandShortcut: ForwardRefExoticComponent & RefAttributes>; export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, };