/** @typedef {typeof __propDef.props} SectionProps */ /** @typedef {typeof __propDef.events} SectionEvents */ /** @typedef {typeof __propDef.slots} SectionSlots */ export default class Section extends SvelteComponentTyped<{ class: any; style: any; active?: boolean; as?: string; }, { click: MouseEvent; mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type SectionProps = typeof __propDef.props; export type SectionEvents = typeof __propDef.events; export type SectionSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; style: any; active?: boolean; as?: string; }; events: { click: MouseEvent; mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};