/** @typedef {typeof __propDef.props} PricingProps */ /** @typedef {typeof __propDef.events} PricingEvents */ /** @typedef {typeof __propDef.slots} PricingSlots */ export default class Pricing extends SvelteComponent<{ offerList: any; gridCols?: string | undefined; }, { purchaseIntent: CustomEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type PricingProps = typeof __propDef.props; export type PricingEvents = typeof __propDef.events; export type PricingSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { offerList: any; gridCols?: string | undefined; }; events: { purchaseIntent: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};