import { DialogProps } from '@radix-ui/react-dialog'; import * as React from 'react'; declare const Command: React.ForwardRefExoticComponent & { label?: string | undefined; shouldFilter?: boolean | undefined; filter?: ((value: string, search: string) => number) | undefined; value?: string | undefined; onValueChange?: ((value: string) => void) | undefined; loop?: boolean | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; interface CommandDialogProps extends DialogProps { } declare const CommandDialog: { ({ children, ...props }: CommandDialogProps): JSX.Element; displayName: string; }; declare const CommandInput: React.ForwardRefExoticComponent, "onChange" | "value" | "type"> & { value?: string | undefined; onValueChange?: ((search: string) => void) | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandList: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandEmpty: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandGroup: React.ForwardRefExoticComponent, "value" | "heading"> & { heading?: React.ReactNode; value?: string | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandSeparator: React.ForwardRefExoticComponent & { alwaysRender?: boolean | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandItem: React.ForwardRefExoticComponent, "onSelect" | "disabled" | "value"> & { disabled?: boolean | undefined; onSelect?: ((value: string) => void) | undefined; value?: string | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandShortcut: { ({ className, ...props }: React.HTMLAttributes): JSX.Element; displayName: string; }; export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, };