import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { image: string; title: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type CardImageProps = typeof __propDef.props; export declare type CardImageEvents = typeof __propDef.events; export declare type CardImageSlots = typeof __propDef.slots; export default class CardImage extends SvelteComponentTyped { } export {};