import type { SlackAccessor } from '../../accessor/slack.ts'; export interface SlackChannel { id: string; name?: string; user?: string; is_archived?: boolean; created?: number; [key: string]: unknown; } export interface ListChannelsOptions { types?: string; limit?: number; } export declare function listChannelsStream(accessor: SlackAccessor, options?: ListChannelsOptions): AsyncIterableIterator; export declare function listChannels(accessor: SlackAccessor, options?: ListChannelsOptions): Promise; export declare function listDms(accessor: SlackAccessor, options?: { limit?: number; }): Promise; //# sourceMappingURL=channels.d.ts.map