import React from 'react'; export interface ForgotPasswordFormProps { /** When provided, the form switches to the "confirm" step (new password). */ token?: string; /** The user id (base64) that came with the reset link. */ uid?: string; onSuccess?: () => void; onBack?: () => void; } export default function ForgotPasswordForm({ token, uid, onSuccess, onBack, }: ForgotPasswordFormProps): React.JSX.Element; //# sourceMappingURL=ForgotPasswordForm.d.ts.map