import { IDestroyable } from '@ts-core/common'; export declare abstract class IUser implements IDestroyable { id: string | number; abstract update(data: T): void; abstract destroy(): void; }