import * as Styles from "./style"; import type { ComponentProps } from "react"; import type { APIEmbedImage } from "discord-api-types/v10"; interface Props extends ComponentProps { embedImage: APIEmbedImage; width?: number; height?: number; } declare function EmbeddedImage({ width, height, embedImage, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export default EmbeddedImage; //# sourceMappingURL=EmbeddedImage.d.ts.map