/** @typedef {typeof __propDef.props} LandingPageConfigurationProps */ /** @typedef {typeof __propDef.events} LandingPageConfigurationEvents */ /** @typedef {typeof __propDef.slots} LandingPageConfigurationSlots */ export default class LandingPageConfiguration extends SvelteComponentTyped<{ fonts: any; colors: any; }, { [evt: string]: CustomEvent; }, {}> { } export type LandingPageConfigurationProps = typeof __propDef.props; export type LandingPageConfigurationEvents = typeof __propDef.events; export type LandingPageConfigurationSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { fonts: any; colors: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};