export interface ClientRole { canGuarantee?: boolean; canOpenAccounts?: boolean; clientType?: ClientRoleClientTypeEnum; creationDate?: string; description?: string; encodedKey?: string; id?: string; idPattern?: string; name?: string; requireID?: boolean; useDefaultAddress?: boolean; } export declare const ClientRoleClientTypeEnum: { readonly Client: "CLIENT"; readonly Group: "GROUP"; }; export type ClientRoleClientTypeEnum = (typeof ClientRoleClientTypeEnum)[keyof typeof ClientRoleClientTypeEnum];