import * as React from 'react'; interface ICommandDialogProps extends React.HTMLProps { children: React.ReactNode; onClose?: () => void; } declare const CommandDialog: { ({ children, onClose, ...props }: ICommandDialogProps): React.JSX.Element; displayName: string | undefined; }; export default CommandDialog;