import type { ReactElement, ReactNode } from 'react';
type AwaitingConfirmationPageProps = {
    title?: ReactNode;
    description?: ReactNode;
    currentStep: number;
    stepCount: number;
    emailAddress: string;
    securityCode: string;
    onResendEmailRequest: () => void;
    onChangeEmailRequest: () => void;
};
declare const AwaitingConfirmationPage: ({ title, description, currentStep, stepCount, securityCode, emailAddress, onResendEmailRequest, onChangeEmailRequest, }: AwaitingConfirmationPageProps) => ReactElement;
export default AwaitingConfirmationPage;
//# sourceMappingURL=AwaitingConfirmationPage.d.ts.map