import { BaseClientCollection, BaseClientCollectionOptions } from './basecollection';
import { Channel } from '../structures/channel';
/**
 * @category Collection Options
 */
export interface ChannelsOptions extends BaseClientCollectionOptions {
}
/**
 * Channels Collection
 * @category Collections
 */
export declare class Channels extends BaseClientCollection<string, Channel> {
    insert(channel: Channel): void;
    get [Symbol.toStringTag](): string;
}
