import type { ReactNode } from "react";
import type { PopoverProps } from "./Popover";
import type { PopoverWidth } from "./PopoverContentContainer";
export interface PopoverBasicProps extends PopoverProps {
    image?: string;
    video?: string;
    altText?: string;
    title?: string;
    description: ReactNode;
    contentPadding?: number;
    link1?: ReactNode;
    link2?: ReactNode;
    width?: PopoverWidth;
}
export declare function PopoverBasic({ width, ...props }: PopoverBasicProps): JSX.Element;
