import type { attributes } from './attributes'; import type { CommonDisplayName } from './CommonDisplayName'; import type { CommonName } from './CommonName'; /** * A profile of a team. After the team is created, an app can be registered and API credentials are created */ export declare type Team = { displayName: CommonDisplayName; name: CommonName; attributes?: attributes; };