@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
26 lines (24 loc) • 564 B
TypeScript
import { TutorialProps } from "./tutorial.types.js";
//#region src/tutorial/tutorial.d.ts
/** Popover Tutorial is used to display information about a new, or existing feature. */
declare function Tutorial({
actionLabel,
children,
className,
onAction,
onDismiss,
onFinish,
steps,
title,
placement,
showSkipButton,
isVisible,
includeFinalPage,
useContentTitle
}: TutorialProps): import("react").JSX.Element;
declare namespace Tutorial {
var displayName: string;
}
//#endregion
export { Tutorial };
//# sourceMappingURL=tutorial.d.ts.map