import * as React from "react"; import { type DialogProps } from "@radix-ui/react-dialog"; /** * A simple and fast command menu for dashboards */ 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) => import("react/jsx-dev-runtime").JSX.Element; declare const CommandInput: React.ForwardRefExoticComponent, "type" | "value" | "onChange"> & { 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, "value" | "disabled" | "onSelect"> & { disabled?: boolean | undefined; onSelect?: ((value: string) => void) | undefined; value?: string | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandShortcut: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-dev-runtime").JSX.Element; displayName: string; }; export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, }; //# sourceMappingURL=index.d.ts.map