import { WebAPICallResult } from '../../WebClient'; export type AdminConversationsBulkMoveResponse = WebAPICallResult & { bulk_action_id?: string; error?: string; needed?: string; not_added?: NotAdded[]; ok?: boolean; provided?: string; response_metadata?: ResponseMetadata; }; export interface NotAdded { channel_id?: string; errors?: string[]; } export interface ResponseMetadata { messages?: string[]; } //# sourceMappingURL=AdminConversationsBulkMoveResponse.d.ts.map