import * as React from 'react'; import { RouteComponentProps } from 'react-router-dom'; import * as GQL from '../backend/graphqlschema'; interface ResetPasswordPageProps extends RouteComponentProps<{}> { user: GQL.IUser | null; } /** * A page that implements the reset-password flow for a user: (1) initiate the flow by providing the email address * of the account whose password to reset, and (2) complete the flow by providing the password-reset code. */ export declare class ResetPasswordPage extends React.PureComponent { componentDidMount(): void; render(): JSX.Element | null; } export {}; //# sourceMappingURL=ResetPasswordPage.d.ts.map