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