import { SvelteComponent } from "svelte"; import type { HTMLImgAttributes } from "svelte/elements"; declare const __propDef: { props: { [x: string]: any; src: string; alt: string; width: HTMLImgAttributes["width"]; height: HTMLImgAttributes["height"]; browserURL?: string | undefined; browserInvert?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ImageProps = typeof __propDef.props; export type ImageEvents = typeof __propDef.events; export type ImageSlots = typeof __propDef.slots; /** * Displays an image. * * [See Docs](https://geist-ui-svelte.dev/components/image) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class Image extends SvelteComponent { } export {};