export interface ResetPasswordReturnType { sendResetPasswordEmail: (email: string) => Promise; resetPassword: (email: string, passwordResetToken: string, newPassword: string) => Promise; isError: boolean; error: any; clearError: () => void; } export declare const useArchbaseResetPassword: () => ResetPasswordReturnType;