import React from 'react'; import type { CommandProps } from './Command'; export interface CommandDialogProps extends CommandProps { /** Whether the dialog is open */ open?: boolean; /** Callback when the open state changes */ onOpenChange?: (open: boolean) => void; /** Children to render inside the command palette */ children?: React.ReactNode; } /** * CommandDialog Component * * Wraps the Command component inside a Radix Dialog for use * as a Cmd+K style command palette overlay. * * @public * * @example * ```tsx * * * * No results found. * * Calendar * * * * ``` */ export declare const CommandDialog: { ({ children, open, onOpenChange, className, ...props }: CommandDialogProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; //# sourceMappingURL=CommandDialog.d.ts.map