import type { FromSchema } from 'json-schema-to-ts';
export declare const userSchema: {
    readonly $id: "#/components/schemas/userSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly description: "An Unleash user";
    readonly required: readonly ["id"];
    readonly properties: {
        readonly id: {
            readonly description: "The user id";
            readonly type: "integer";
            readonly example: 123;
        };
        readonly name: {
            readonly description: "Name of the user";
            readonly type: "string";
            readonly example: "User";
            readonly nullable: true;
        };
        readonly email: {
            readonly description: "Email of the user";
            readonly type: "string";
            readonly example: "user@example.com";
        };
        readonly username: {
            readonly description: "A unique username for the user";
            readonly type: "string";
            readonly example: "hunter";
            readonly nullable: true;
        };
        readonly imageUrl: {
            readonly description: "URL used for the user profile image";
            readonly type: "string";
            readonly example: "https://example.com/242x200.png";
        };
        readonly inviteLink: {
            readonly description: "If the user is actively inviting other users, this is the link that can be shared with other users";
            readonly type: "string";
            readonly example: "http://localhost:4242/invite-link/some-secret";
        };
        readonly loginAttempts: {
            readonly description: "How many unsuccessful attempts at logging in has the user made";
            readonly type: "integer";
            readonly minimum: 0;
            readonly example: 3;
        };
        readonly emailSent: {
            readonly description: "Is the welcome email sent to the user or not";
            readonly type: "boolean";
            readonly example: false;
        };
        readonly rootRole: {
            readonly description: "Which [root role](https://docs.getunleash.io/concepts/rbac#predefined-roles) this user is assigned";
            readonly type: "integer";
            readonly example: 1;
            readonly minimum: 0;
        };
        readonly seenAt: {
            readonly description: "The last time this user logged in";
            readonly type: "string";
            readonly format: "date-time";
            readonly nullable: true;
            readonly example: "2023-06-30T11:42:00.345Z";
        };
        readonly createdAt: {
            readonly description: "The user was created at this time";
            readonly type: "string";
            readonly format: "date-time";
            readonly example: "2023-06-30T11:41:00.123Z";
        };
        readonly accountType: {
            readonly description: "A user is either an actual User or a Service Account";
            readonly type: "string";
            readonly enum: readonly ["User", "Service Account"];
            readonly example: "User";
        };
        readonly permissions: {
            readonly description: "Deprecated";
            readonly type: "array";
            readonly items: {
                readonly type: "string";
            };
        };
        readonly scimId: {
            readonly description: "The SCIM ID of the user, only present if managed by SCIM";
            readonly type: "string";
            readonly nullable: true;
            readonly example: "01HTMEXAMPLESCIMID7SWWGHN6";
        };
        readonly seatType: {
            readonly description: "The seat type of this user";
            readonly type: "string";
            readonly nullable: true;
            readonly example: "Regular";
        };
        readonly companyRole: {
            readonly description: "The role of the user within the company.";
            readonly type: "string";
            readonly nullable: true;
            readonly example: "Developer";
        };
        readonly productUpdatesEmailConsent: {
            readonly type: "boolean";
            readonly description: "Whether the user has consented to receive product update emails.";
            readonly nullable: true;
            readonly example: false;
        };
        readonly activeSessions: {
            readonly description: "Count of active browser sessions for this user";
            readonly type: "integer";
            readonly nullable: true;
            readonly example: 2;
        };
        readonly deletedSessions: {
            readonly description: "Experimental. The number of deleted browser sessions after last login";
            readonly type: "number";
            readonly example: 1;
        };
    };
    readonly components: {};
};
export type UserSchema = FromSchema<typeof userSchema>;
//# sourceMappingURL=user-schema.d.ts.map