/** @typedef {typeof __propDef.props} BannerProps */ /** @typedef {typeof __propDef.events} BannerEvents */ /** @typedef {typeof __propDef.slots} BannerSlots */ export default class Banner extends SvelteComponentTyped<{ lpKey: any; settings: any; properties: any; country?: null | undefined; hash?: string | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type BannerProps = typeof __propDef.props; export type BannerEvents = typeof __propDef.events; export type BannerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { lpKey: any; settings: any; properties: any; country?: null | undefined; hash?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};