import * as React from "react"; import { Command as CommandPrimitive } from "cmdk"; type CommandProps = React.ComponentPropsWithoutRef; declare const Command: (({ className, ...props }: React.ComponentPropsWithoutRef) => React.JSX.Element) & { Empty: (props: import("./components/Empty.js").EmptyProps) => React.JSX.Element; Group: ({ className, ...props }: import("./components/Group.js").GroupProps) => React.JSX.Element; Input: ({ inputElement, size, inputRef, ...props }: import("./components/Input.js").InputProps) => React.JSX.Element; Item: ({ className, children, selected, ...props }: import("./components/Item.js").ItemProps) => React.JSX.Element; List: ({ className, ...props }: import("./components/List.js").ListProps) => React.JSX.Element; Loading: (props: import("./components/Loading.js").LoadingProps) => React.JSX.Element; Separator: (props: import("./components/Separator.js").SeparatorProps) => React.JSX.Element; }; export { Command, type CommandProps };