aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
17 lines • 620 B
TypeScript
import React from "react";
export interface CoachmarkStep {
id: string;
content: React.ReactNode;
}
export interface GlassCoachmarksProps {
steps: CoachmarkStep[];
current: number;
onNext: () => void;
onPrev: () => void;
onClose: () => void;
className?: string;
"data-testid"?: string;
}
export declare function GlassCoachmarks({ steps: incomingSteps, current, onNext, onPrev, onClose, className, "data-testid": dataTestId, ...props }: GlassCoachmarksProps): import("react/jsx-runtime").JSX.Element | null;
export default GlassCoachmarks;
//# sourceMappingURL=GlassCoachmarks.d.ts.map