import React from 'react'; import { GlobalProps } from '../../utilities/globalProps'; declare type DialogHeaderProps = { aria?: { [key: string]: string; }; children: React.ReactNode[] | React.ReactNode | string; className?: string; closeable?: boolean; data?: object; id?: string; padding?: string; separator?: boolean; spacing?: "none" | "between" | "around" | "evenly"; text?: string; title?: string; } & GlobalProps; declare const DialogHeader: (props: DialogHeaderProps) => JSX.Element; export default DialogHeader;