import type { ReactNode } from "react";
import type { PopoverProps } from "./Popover";
import type { PopoverWidth } from "./PopoverContentContainer";
export interface PopoverSequentialProps extends PopoverProps {
    title: string;
    image?: string;
    video?: string;
    description: ReactNode;
    infoCallout?: ReactNode;
    currentStep: number;
    totalSteps: number;
    onBack: () => void;
    onNext: () => void;
    onFinish: () => void;
    width?: PopoverWidth;
}
export declare function PopoverSequential({ width, ...props }: PopoverSequentialProps): JSX.Element;
