import { type ReactNode } from "react"; import type { ReactElement } from "react"; import { type NextStepPreviewProps } from "./step-preview"; export * from "./step-card"; export * from "./step-preview"; export * from "./next-button"; export interface MultiStepCardsProps { children: ReactNode | ReactNode[]; activeStep?: number; className?: { root?: string; stepsPreviewContainer?: string; stepPreview?: NextStepPreviewProps["className"]; }; messages: { step?: string; }; } export declare const MultiStepCards: ({ children, activeStep, className, messages, }: MultiStepCardsProps) => ReactElement; //# sourceMappingURL=index.d.ts.map