/** * 检验校验位是否合法 * @param bfsAppId 应用id * @returns */ export declare function checkSign(bfsAppId: string): Promise; /** * 计算校验位值 * @param checkStr 生成的7位码 * @returns */ export declare function countCheckAt(checkStr: string): string; /** * 生成bfsAppId * @returns */ export declare function genBfsAppId(): Promise;