/** @typedef {typeof __propDef.props} OfferSwitchProps */ /** @typedef {typeof __propDef.events} OfferSwitchEvents */ /** @typedef {typeof __propDef.slots} OfferSwitchSlots */ export default class OfferSwitch extends SvelteComponent<{ checked: any; leftLabel: any; rightLabel: any; rightLabelNote: any; }, { modified: CustomEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type OfferSwitchProps = typeof __propDef.props; export type OfferSwitchEvents = typeof __propDef.events; export type OfferSwitchSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { /** @typedef {typeof __propDef.events} OfferSwitchEvents */ /** @typedef {typeof __propDef.slots} OfferSwitchSlots */ props: { checked: any; leftLabel: any; rightLabel: any; rightLabelNote: any; }; events: { modified: CustomEvent; } & { [evt: string]: CustomEvent; }; /** @typedef {typeof __propDef.slots} OfferSwitchSlots */ slots: {}; }; export {};