import type { SvelteComponentTyped } from 'svelte/internal' import type { DOMEvents, MountEvent, SvanticProps } from '../../common' type BreadcrumbSectionProps = SvanticProps & { active?: boolean as?: 'a' | 'div' } type BreadcrumbSectionEvents = MountEvent & { click: DOMEvents['click'] } /** * @description Breadcrumb section */ export default class Section extends SvelteComponentTyped< SectionProps, BreadcrumbSectionEvents > {}