import type { PrincipalEntity } from '../schemas/PrincipalEntity'; import type { UserGroupEntity } from '../schemas/UserGroupEntity'; import type { UserWithAccessEntity } from '../schemas/UserWithAccessEntity'; export interface PrincipalWithAccessResponse { orgs?: string[]; projects?: Array; serviceAccounts?: PrincipalEntity[]; totalPages?: number; totalPrincipals?: number; userGroups?: UserGroupEntity[]; usersWithAccess?: UserWithAccessEntity[]; }