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