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