import React, { ReactNode } from 'react';
export interface PopoverContentProps {
    /**
     * The position to expand the popover
     *
     * @default left
     */
    alignment?: 'bottom-left' | 'bottom-center' | 'bottom-right' | 'top-left' | 'top-center' | 'top-right' | 'left-bottom' | 'left-center' | 'left-top' | 'right-bottom' | 'right-center' | 'right-top';
    /**
     * @ignore
     */
    children: ReactNode;
}
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>>;
export default _default;
