@octopusdeploy/design-system-components
Version:
The design systems component library.
18 lines (17 loc) • 581 B
TypeScript
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;