import { HasDBId } from "../../../types.js"; export type Team = { label: string; apiName: string; members: Array; description: string; } & HasDBId;