import { DialogProps } from '@radix-ui/react-dialog'; import { Command as CommandPrimitive } from 'cmdk'; import type * as React from 'react'; declare const Command: { ({ className, ...props }: React.ComponentPropsWithoutRef): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; interface CommandDialogProps extends DialogProps { } declare const CommandDialog: ({ children, ...props }: CommandDialogProps) => import("react/jsx-runtime").JSX.Element; type CommandInputProps = React.ComponentPropsWithoutRef & { type?: React.InputHTMLAttributes['type']; }; declare const CommandInput: { ({ className, type, ...props }: CommandInputProps): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandList: { ({ className, ...props }: React.ComponentPropsWithoutRef): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandEmpty: { (props: React.ComponentPropsWithoutRef): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandGroup: { ({ className, ...props }: React.ComponentPropsWithoutRef): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandSeparator: { ({ className, ...props }: React.ComponentPropsWithoutRef): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandItem: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref; } & { asChild?: boolean; }, "key" | keyof React.HTMLAttributes | "asChild">, "value" | "onSelect" | "disabled"> & { disabled?: boolean; onSelect?: (value: string) => void; value?: string; keywords?: string[]; forceMount?: boolean; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandShortcut: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, }; //# sourceMappingURL=command.d.ts.map