/// <reference types="react" />
export interface PopoverContentProps {
    className?: string;
    side?: "top" | "right" | "bottom" | "left";
    sideOffset?: number;
    align?: "start" | "center" | "end";
    alignOffset?: number;
    avoidCollisions?: boolean;
    onInteractOutside?: () => void;
    onOpenAutoFocus?: (event: Event) => void;
    children: React.ReactNode;
}
export declare const Content: {
    ({ children, className, onInteractOutside, ...props }: PopoverContentProps): JSX.Element;
    displayName: string;
};
