import type { ClientRoleConfiguration } from './client-role-configuration'; export interface ClientRolesConfiguration { defaultRole: ClientRoleConfiguration; roles?: Array; type: ClientRolesConfigurationTypeEnum; } export declare const ClientRolesConfigurationTypeEnum: { readonly Client: "CLIENT"; readonly Group: "GROUP"; }; export type ClientRolesConfigurationTypeEnum = (typeof ClientRolesConfigurationTypeEnum)[keyof typeof ClientRolesConfigurationTypeEnum];