@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 423 B
TypeScript
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;