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;
