import { APIEmbed } from "../api"; import { Client } from "../Client"; import { BaseEmbed } from "./BaseEmbed"; export declare class EmbedMedia extends BaseEmbed { client: Client; readonly source: (APIEmbed & { type: "Video"; }) | (APIEmbed & { type: "Image"; }); constructor(client: Client, source: (APIEmbed & { type: "Video"; }) | (APIEmbed & { type: "Image"; })); get type(): "Image" | "Video"; get url(): string; get proxyURL(): string; get width(): number; get height(): number; get size(): "Large" | "Preview"; }