import { FC, HTMLAttributes, ReactNode } from 'react';
import { BaseProps } from '../Base';
export interface PopOverHeaderProps extends Omit, 'css'>, BaseProps {
/** The title of the PopOver menu header. */
title?: string;
/** The subtitle of the PopOver menu header. */
subtitle?: string | ReactNode;
/** The source of the PopOver menu image. */
imgSrc?: string;
}
export declare const PopOverHeader: FC;
export default PopOverHeader;