@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
23 lines (21 loc) • 493 B
TypeScript
import { TutorialCardProps } from "./tutorial.types.js";
//#region src/tutorial/tutorialCard.d.ts
declare function TutorialCard({
actionLabel,
className,
title,
readMoreLink,
steps: propsSteps,
showSkipButton,
onAction,
onDismiss,
onFinish,
includeFinalPage,
useContentTitle
}: TutorialCardProps): import("react").JSX.Element;
declare namespace TutorialCard {
var displayName: string;
}
//#endregion
export { TutorialCard };
//# sourceMappingURL=tutorialCard.d.ts.map