import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { image: string; title: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ImageProps = typeof __propDef.props; export declare type ImageEvents = typeof __propDef.events; export declare type ImageSlots = typeof __propDef.slots; export default class Image extends SvelteComponentTyped { } export {};