import { ReactNode } from "react"; /** * @deprecated Use modal-dialog */ export interface DialogProps { children: ReactNode; id: string; header: ReactNode; } export declare type removeDialogDefinition = (uuid: string) => void;