///
import type { DButtonProps } from '../button';
export interface DDrawerHeaderProps extends React.HTMLAttributes {
dActions?: React.ReactNode[];
dCloseProps?: DButtonProps;
onCloseClick?: () => void | boolean | Promise;
}
export interface DDrawerHeaderPrivateProps {
__id?: string;
__onClose?: () => void;
}
export declare function DDrawerHeader(props: DDrawerHeaderProps): JSX.Element | null;