/** @typedef {typeof __propDef.props} Hero1Props */ /** @typedef {typeof __propDef.events} Hero1Events */ /** @typedef {typeof __propDef.slots} Hero1Slots */ export default class Hero1 extends SvelteComponentTyped<{ lpKey: any; country: any; settings: any; properties: any; component?: ({ label: string; inputType: string; value: any; inpuType?: undefined; } | { label: string; inpuType: string; value: {}; inputType?: undefined; })[] | undefined; }, { [evt: string]: CustomEvent; }, {}> { get component(): ({ label: string; inputType: string; value: any; inpuType?: undefined; } | { label: string; inpuType: string; value: {}; inputType?: undefined; })[]; } export type Hero1Props = typeof __propDef.props; export type Hero1Events = typeof __propDef.events; export type Hero1Slots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { lpKey: any; country: any; settings: any; properties: any; component?: ({ label: string; inputType: string; value: any; inpuType?: undefined; } | { label: string; inpuType: string; value: {}; inputType?: undefined; })[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};