import { Dialog as DialogComponent } from './Dialog'; import { DialogContent, DialogTitle } from './DialogContent'; declare type BaseDialogType = typeof DialogComponent; interface DialogType extends BaseDialogType { Content: typeof DialogContent; Title: typeof DialogTitle; } declare const Dialog: DialogType; export { Dialog };