import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { image: string; category: string; title: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ImageBoxProps = typeof __propDef.props; export declare type ImageBoxEvents = typeof __propDef.events; export declare type ImageBoxSlots = typeof __propDef.slots; export default class ImageBox extends SvelteComponentTyped { } export {};