import type { OxAccount as _OxAccount } from '../../server/accounts/class'; declare class AccountInterface { accountId: number; constructor(accountId: number); } export type OxAccount = _OxAccount & AccountInterface; export declare function GetAccount(accountId: number): Promise; export declare function GetCharacterAccount(charId: number | string): Promise; export declare function GetGroupAccount(groupName: string): Promise; export declare function CreateAccount(owner: number | string, label: string): Promise; export {};