import type { Meta } from './Meta'; import type { AnyJson } from './types'; export declare class JwtUserdata { private Meta; constructor(MetaObject: Meta); list(): Promise; get(key: string | string[]): Promise; delete(key: string): Promise; set(key: string, data: AnyJson): Promise; }