export interface IRole { id?: number; workspaceId: string; personId: number | null; name: string | null; description: string | null; holdingId: string | null; } export declare function parseRole(role: IRole): IRole; export interface IRoleProperties { id?: boolean; name?: boolean; description?: boolean; holdingId?: boolean; personId?: boolean; workspaceId?: boolean; } export declare const defaultGetRolesProperties: IRoleProperties;