import { WebAPICallResult } from '../../WebClient'; export type AuthTeamsListResponse = WebAPICallResult & { error?: string; needed?: string; ok?: boolean; provided?: string; response_metadata?: ResponseMetadata; teams?: Team[]; }; export interface ResponseMetadata { next_cursor?: string; } export interface Team { icon?: Icon; id?: string; name?: string; } export interface Icon { image_102?: string; image_132?: string; image_230?: string; image_34?: string; image_44?: string; image_68?: string; image_88?: string; image_default?: boolean; } //# sourceMappingURL=AuthTeamsListResponse.d.ts.map