import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: string; data?: string[]; image: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type BuyerProtectionProps = typeof __propDef.props; export declare type BuyerProtectionEvents = typeof __propDef.events; export declare type BuyerProtectionSlots = typeof __propDef.slots; export default class BuyerProtection extends SvelteComponentTyped { } export {};