/** Account List */
export interface Account {
    /** Name of account */
    accountName: string;
    /** Account description */
    description: string;
    /** Name of domain */
    domain: string;
    /** Email */
    email: string;
    /** If true your account is blocked */
    isBlocked: boolean;
    /** Size of your account in bytes */
    size: number;
}
//# sourceMappingURL=Account.d.ts.map