import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { image: string; title: string; price: string; subTitle: string[]; rate?: number; totalRate?: number; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type BoxListingProps = typeof __propDef.props; export declare type BoxListingEvents = typeof __propDef.events; export declare type BoxListingSlots = typeof __propDef.slots; export default class BoxListing extends SvelteComponentTyped { } export {};