@proveanything/smartlinks-auth-ui
Version:
Lightweight React authentication UI components with bearer token support and Smartlinks SDK integration
13 lines • 414 B
TypeScript
import React from 'react';
import './AuthForm.css';
interface PasswordResetFormProps {
onSubmit: (emailOrPassword: string, confirmPassword?: string) => Promise<void>;
onBack: () => void;
loading: boolean;
error?: string;
success?: boolean;
token?: string;
}
export declare const PasswordResetForm: React.FC<PasswordResetFormProps>;
export {};
//# sourceMappingURL=PasswordResetForm.d.ts.map