import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { image: string; title: string; price: string; subTitle: string[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type BoxThumbProps = typeof __propDef.props; export declare type BoxThumbEvents = typeof __propDef.events; export declare type BoxThumbSlots = typeof __propDef.slots; export default class BoxThumb extends SvelteComponentTyped { } export {};