import * as React from "react"; import { type DialogProps } from "@radix-ui/react-dialog"; declare const Command: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref | undefined; } & { asChild?: boolean | undefined; }, "key" | keyof React.HTMLAttributes | "asChild"> & { label?: string | undefined; shouldFilter?: boolean | undefined; filter?: ((value: string, search: string, keywords?: string[] | undefined) => number) | undefined; defaultValue?: string | undefined; value?: string | undefined; onValueChange?: ((value: string) => void) | undefined; loop?: boolean | undefined; disablePointerSelection?: boolean | undefined; vimBindings?: boolean | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; interface CommandDialogProps extends DialogProps { } declare const CommandDialog: ({ children, ...props }: CommandDialogProps) => import("react/jsx-runtime").JSX.Element; declare const CommandInput: React.ForwardRefExoticComponent, HTMLInputElement>, "key" | keyof React.InputHTMLAttributes> & { ref?: React.Ref | undefined; } & { asChild?: boolean | undefined; }, "key" | "asChild" | keyof React.InputHTMLAttributes>, "onChange" | "value" | "type"> & { value?: string | undefined; onValueChange?: ((search: string) => void) | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandList: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref | undefined; } & { asChild?: boolean | undefined; }, "key" | keyof React.HTMLAttributes | "asChild"> & { label?: string | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandEmpty: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref | undefined; } & { asChild?: boolean | undefined; }, "key" | keyof React.HTMLAttributes | "asChild"> & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandGroup: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref | undefined; } & { asChild?: boolean | undefined; }, "key" | keyof React.HTMLAttributes | "asChild">, "value" | "heading"> & { heading?: React.ReactNode; value?: string | undefined; forceMount?: boolean | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandSeparator: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref | undefined; } & { asChild?: boolean | undefined; }, "key" | keyof React.HTMLAttributes | "asChild"> & { alwaysRender?: boolean | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandItem: React.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: React.Ref | undefined; } & { asChild?: boolean | undefined; }, "key" | keyof React.HTMLAttributes | "asChild">, "onSelect" | "disabled" | "value"> & { disabled?: boolean | undefined; onSelect?: ((value: string) => void) | undefined; value?: string | undefined; keywords?: string[] | undefined; forceMount?: boolean | undefined; } & 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, };