/** @typedef {typeof __propDef.props} HeaderImageProps */ /** @typedef {typeof __propDef.events} HeaderImageEvents */ /** @typedef {typeof __propDef.slots} HeaderImageSlots */ export default class HeaderImage extends SvelteComponentTyped<{ time?: number; title?: string; button?: string; description?: string; image?: string; data?: {}; imageRight?: string; buttonLink?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type HeaderImageProps = typeof __propDef.props; export type HeaderImageEvents = typeof __propDef.events; export type HeaderImageSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { time?: number; title?: string; button?: string; description?: string; image?: string; data?: {}; imageRight?: string; buttonLink?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};