import { Command as CommandPrimitive } from 'cmdk'; import { Dialog } from './dialog'; import type * as React from "react"; declare function Command({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit, "children"> & { title?: string; description?: string; className?: string; showCloseButton?: boolean; children: React.ReactNode; }): React.JSX.Element; declare function CommandInput({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function CommandList({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function CommandEmpty({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function CommandGroup({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function CommandSeparator({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function CommandItem({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function CommandShortcut({ className, ...props }: React.ComponentProps<"span">): React.JSX.Element; export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, }; //# sourceMappingURL=command.d.ts.map