import { InfoHelper } from "../index"; export declare const getDormScore: (helper: InfoHelper, dormPassword: string) => Promise; export declare const getEleRechargePayCode: (helper: InfoHelper, money: number) => Promise; export declare const getElePayRecord: (helper: InfoHelper) => Promise<[string, string, string, string, string, string][]>; export declare const getEleRemainder: (helper: InfoHelper) => Promise<{ remainder: number; updateTime: string; }>; export declare const resetDormPassword: (helper: InfoHelper, newPassword: string) => Promise;