import { Author } from "../../../structures"; import { ISoundCloudAuthor } from "../../../types"; export declare class SoundCloudAuthor extends Author implements ISoundCloudAuthor { readonly picture: string; readonly followers: number; readonly following: number; constructor(name: string, id: string, url: string, picture: string, followers: number, following: number); }