/// <reference types="react" />
import type { CSS } from '@project44-manifest/react-styles';
import type { IconButton } from '../button';
import type { Typography } from '../Typography';
export declare type DialogHeaderElement = 'div';
export interface DialogHeaderProps {
    /**
     * Theme aware style object
     */
    css?: CSS;
    /**
     * Props bassed to the button component.
     */
    buttonProps?: React.ComponentProps<typeof IconButton>;
    /**
     * Props bassed to the typography component.
     */
    typographyProps?: React.ComponentProps<typeof Typography>;
}
//# sourceMappingURL=DialogHeader.types.d.ts.map