export interface DialogHeaderProps {
    /**
     * The label of the Dialog.
     */
    title: string;
    /**
     * If defined, a Dismiss icon will be shown at the right. This is the callback.
     */
    onClose?: () => void;
}
