import React from 'react';
import { RateThisPageProps } from './RateThisPage.types';
declare enum HelpfulEnum {
    yes = "Yes",
    no = "No"
}
export interface RateFormInputs {
    HowCanWeImprove: string;
    Email: string;
    HowEasyToFind: string;
    HowEasyToUnderstand: string;
    IsHelpful: HelpfulEnum;
    BarriersOrIssues: string;
    ReCaptcha: string;
}
/**
 * A form that allows visitors to rate the website page.
 * If the user answers No to 'Is this information helpful?' then they are presented with more questions.
 * The form is protected by Google recaptcha and needs a recaptcha sitekey to work.
 */
declare const RateThisPage: React.FunctionComponent<RateThisPageProps>;
export default RateThisPage;
