/** * * * Represents the role configuration for a user, specifying the source of the roles and the set of * assigned roles. */ export declare class RoleConfiguration { /** * * The source from which the roles are derived (configuration, inherited, or default). */ source: RoleConfiguration.Source; /** * * The set of role identifiers assigned. */ roles: Array; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): RoleConfiguration; } export declare namespace RoleConfiguration { enum Source { Configuration = "Configuration", Inherited = "Inherited", Default = "Default" } }