UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 423 B
import React from 'react'; import { OnboardingItemShareProps } from "../stepRenderer"; export type ThankYouProps = { onClose(): void; thanksPageInfo?: { title: string; description: string; }; isActive?: boolean; } & Partial<OnboardingItemShareProps>; export declare const ThankYouStepRenderer: ({ onClose, thanksPageInfo, isActive, ...rest }: ThankYouProps) => React.JSX.Element;