import type { ReactNode } from "react"; export * from "./variants.js"; type SectionBackground = "default" | "muted" | "primary"; type SectionProps = { background?: SectionBackground; children: ReactNode; className?: string; }; export declare function Section({ background, children, className }: SectionProps): import("react").JSX.Element; type SectionHeaderProps = { title: string; description?: string; }; export declare function SectionTitle({ title, description }: SectionHeaderProps): import("react").JSX.Element; type StepIndicatorProps = { step: string; title: string; description: string; }; export declare function StepIndicator({ step, title, description }: StepIndicatorProps): import("react").JSX.Element; type CheckItemProps = { icon: ReactNode; children: ReactNode; }; export declare function CheckItem({ icon, children }: CheckItemProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map