import { getConfigDir } from './config-path'; interface UserInfo { loginUin: string; uin?: string; cookie: string; cookieList: string[]; cookieObject: Record; refreshData: (cookie: string) => any; [key: string]: any; } declare const parseCookieObject: (cookie: string) => Record; declare const normalizeUserInfo: (value: unknown) => UserInfo; export { getConfigDir }; export { normalizeUserInfo, parseCookieObject }; declare const _default: UserInfo; export default _default;