import { SvelteComponentTyped } from "svelte"; import { type ASTNode } from '../../core'; declare const __propDef: { props: { node: ASTNode; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ImageRendererProps = typeof __propDef.props; export declare type ImageRendererEvents = typeof __propDef.events; export declare type ImageRendererSlots = typeof __propDef.slots; export default class ImageRenderer extends SvelteComponentTyped { } export {};