import * as React from "react"; import { CommandDialog } from "@/components/ui/command"; export interface CommandPaletteProps extends Omit, "title" | "description"> { /** Dialog title (sr-only). */ title?: string; /** Dialog description (sr-only). */ description?: string; /** Whether Cmd/Ctrl+K listens to open the palette. Default true. */ shortcutEnabled?: boolean; /** Command content: CommandInput, CommandList, CommandGroup, CommandItem, etc. */ children: React.ReactNode; } /** * Global command palette that opens via Cmd/Ctrl+K. Wraps CommandDialog and Command * with a keyboard shortcut listener. Use CommandInput, CommandList, CommandGroup, * and CommandItem as children. */ export declare function CommandPalette({ title, description, shortcutEnabled, open: controlledOpen, onOpenChange: controlledOnOpenChange, children, ...dialogProps }: CommandPaletteProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=command-palette.d.ts.map