import { IRole } from './IRole';
/** Description of IRoleReferences interface */
export interface IRoleReferences {
    /** List of role references */
    references: IRoleReference[];
    /** Link to this Resource */
    self: string;
}
/** Description of IRoleReference interface */
export interface IRoleReference {
    /** A role resource being referenced */
    role: IRole;
    /** Link to this Resource */
    self: string;
}
//# sourceMappingURL=IRoleReference.d.ts.map