import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { textSippingAddress?: string; textSippingAddressButton?: string; textPaymentMethod?: string; textOrderSummary?: string; textBuyerProtection?: string; textShippingEdit?: string; shippingAddress?: any[]; showAll?: boolean; payment?: { cardNumber: string; expDate: string; cvv: string; method: number; }; buyerProtectionData?: string[]; }; events: { addAddress: CustomEvent; edit: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { left: {}; right: {}; }; }; export declare type CheckoutProps = typeof __propDef.props; export declare type CheckoutEvents = typeof __propDef.events; export declare type CheckoutSlots = typeof __propDef.slots; export default class Checkout extends SvelteComponentTyped { } export {};