export interface AttachTeamUserRoleInput {
    teamId: string;
    userId: string;
    roleId: string;
}
export interface AttachTeamUserRoleOutput {
}
