import { CompoundComponent } from '../../core';
import { Header } from './Header';
import { Content } from './Content';
import { Footer } from './Footer';
import { PopoverProps } from './types';
export * from './types';
export declare const Popover: CompoundComponent<PopoverProps, {
    Content: typeof Content;
    Footer: typeof Footer;
    Header: typeof Header;
}>;
