/** @typedef {typeof __propDef.props} AboutUsProps */ /** @typedef {typeof __propDef.events} AboutUsEvents */ /** @typedef {typeof __propDef.slots} AboutUsSlots */ export default class AboutUs extends SvelteComponentTyped<{ properties: any; settings: any; }, { [evt: string]: CustomEvent; }, {}> { } export type AboutUsProps = typeof __propDef.props; export type AboutUsEvents = typeof __propDef.events; export type AboutUsSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { properties: any; settings: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};