import { Author } from "../../../structures/author"; import { iYouTubeChannel, iYouTubeThumbnail } from "../../../types"; export declare class YouTubeChannel extends Author implements iYouTubeChannel { readonly icon: iYouTubeThumbnail; readonly isVerified: boolean; constructor(id: string, name: string, url: string, icon: iYouTubeThumbnail, isVerified: boolean); }