import { APIEmbed } from "../api"; import { Client } from "../Client"; import { BaseEmbed } from "./BaseEmbed"; export declare class EmbedWeb extends BaseEmbed { client: Client; readonly source: APIEmbed & { type: "Website"; }; readonly color?: string; readonly description?: string; readonly iconURL?: string; readonly originalURL?: string; readonly siteName?: string; readonly special?: (APIEmbed & { type: "Website"; })["special"]; readonly title?: string; readonly url?: string; readonly video?: string; private readonly _media?; constructor(client: Client, source: APIEmbed & { type: "Website"; }); get proxyIconURL(): string; get media(): { height: number; proxyURL: string; url: string; width: number; } & ({ type: "Image"; size: "Large" | "Preview"; } | { type: "Video"; }); }