import { User } from 'apprt/api'; interface UserOptions { name: string; [others: string]: any; } declare class UserImpl implements User { name: string; [key: string]: unknown; constructor(options: UserOptions); getName(): string; get(key: string): any; } export { UserImpl as default }; export type { UserOptions };