import type { PropsWithChildren } from "react";
export declare const popoverWidthOptions: readonly ["narrow", "wide", "extra-wide"];
export type PopoverWidth = (typeof popoverWidthOptions)[number];
export interface PopoverContentContainerProps {
    width?: PopoverWidth;
    boundaryPadding?: number;
}
export declare function PopoverContentContainer({ width, children, boundaryPadding }: PropsWithChildren<PopoverContentContainerProps>): import("react/jsx-runtime").JSX.Element;
