/** @typedef {typeof __propDef.props} BlogProps */ /** @typedef {typeof __propDef.events} BlogEvents */ /** @typedef {typeof __propDef.slots} BlogSlots */ export default class Blog extends SvelteComponentTyped<{ href?: string; tags?: any[]; }, { [evt: string]: CustomEvent; }, {}> { } export type BlogProps = typeof __propDef.props; export type BlogEvents = typeof __propDef.events; export type BlogSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { href?: string; tags?: any[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};