/** @typedef {typeof __propDef.props} HeadingAreaProps */ /** @typedef {typeof __propDef.events} HeadingAreaEvents */ /** @typedef {typeof __propDef.slots} HeadingAreaSlots */ export default class HeadingArea extends SvelteComponentTyped<{ title: any; subTitle: any; description: any; image: any; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type HeadingAreaProps = typeof __propDef.props; export type HeadingAreaEvents = typeof __propDef.events; export type HeadingAreaSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: any; subTitle: any; description: any; image: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};