export interface PasswordResetResult {
    success: boolean;
    newPassword?: string;
    message: string;
}
