UNPKG

aws-amplify-react

Version:

AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.

17 lines (16 loc) 511 B
import { AuthPiece, IAuthPieceProps, IAuthPieceState } from './AuthPiece'; export interface IForgotPasswordState extends IAuthPieceState { delivery: any; } export declare class ForgotPassword extends AuthPiece<IAuthPieceProps, IForgotPasswordState> { constructor(props: IAuthPieceProps); send(): void; submit(): void; sendView(): JSX.Element; submitView(): JSX.Element; showComponent(theme: any): JSX.Element; } /** * @deprecated use named import */ export default ForgotPassword;