import * as React from "react"; import { DialogProps } from "@radix-ui/react-dialog"; interface CommandDialogProps extends DialogProps { } declare const CommandDialog: ({ children, ...props }: CommandDialogProps) => React.JSX.Element; export default CommandDialog;