/** * This is auto-generated file, don't modify this file manually */ export declare const OwnerStateStateEnumNames: { readonly BANNED: 1; readonly ADULT: 2; readonly HIDDEN: 3; readonly DELETED: 4; readonly BLACKLISTED: 5; }; export interface OwnerState { /** * `1` — banned * `2` — adult * `3` — hidden * `4` — deleted * `5` — blacklisted */ state?: 1 | 2 | 3 | 4 | 5; /** * wiki text to describe user state */ description?: string; }