/** * This is auto-generated file, don't modify this file manually */ export declare const FriendsFriendStatusStatusEnumNames: { readonly NOT_A_FRIEND: 0; readonly OUTCOMING_REQUEST: 1; readonly INCOMING_REQUEST: 2; readonly IS_FRIEND: 3; }; /** * Friend status with the user * * @note This enum have auto-generated constant with keys and values * @see FriendsFriendStatusStatusEnumNames * * `0` — not a friend * `1` — outcoming request * `2` — incoming request * `3` — is friend */ export declare type FriendsFriendStatusStatus = 0 | 1 | 2 | 3;