import * as React from 'react'; import { DialogProps } from '@radix-ui/react-dialog'; import { Command as CommandPrimitive } from 'cmdk'; declare const Command: { ({ className, ref, ...props }: React.ComponentPropsWithoutRef & { ref?: any; }): 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; declare const CommandInput: { ({ className, ref, ...props }: React.ComponentPropsWithoutRef & { ref?: any; }): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandList: { ({ className, ref, ...props }: React.ComponentPropsWithoutRef & { ref?: any; }): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandEmpty: { ({ ref, ...props }: React.ComponentPropsWithoutRef & { ref?: any; }): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandGroup: { ({ className, ref, ...props }: React.ComponentPropsWithoutRef & { ref?: any; }): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandSeparator: { ({ className, ref, ...props }: React.ComponentPropsWithoutRef & { ref?: any; }): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; declare const CommandItem: { ({ className, ref, ...props }: React.ComponentPropsWithoutRef & { ref?: any; }): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; 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, };