import * as React from "react"; import { Command as CommandPrimitive } from "cmdk"; import { Dialog } from "@/components/ui/dialog"; declare function Command({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: React.ComponentProps & { title?: string; description?: string; className?: string; showCloseButton?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function CommandInput({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare const CommandList: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref; } & { asChild?: boolean; }, "key" | keyof React.HTMLAttributes | "asChild"> & { label?: string; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare function CommandEmpty({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function CommandGroup({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function CommandSeparator({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function CommandItem({ className, children, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function CommandShortcut({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element; export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, }; //# sourceMappingURL=command.d.ts.map