import { User as _User } from "@replikit/storage/typings"; import { Account, Entity, Member } from "../index"; import { Identifier } from "@replikit/core/typings"; export declare class User extends Entity { _id: number; get account(): Account; accounts: Account[]; getAccount(controller: string): Account | undefined; getMember(controller: string, channelId: Identifier): Promise; delete(): Promise; } export interface User extends _User { }