/** @typedef {typeof __propDef.props} DashboardProps */ /** @typedef {typeof __propDef.events} DashboardEvents */ /** @typedef {typeof __propDef.slots} DashboardSlots */ export default class Dashboard extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, { sidebar: {}; navbar: {}; body: {}; }> { } export type DashboardProps = typeof __propDef.props; export type DashboardEvents = typeof __propDef.events; export type DashboardSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { sidebar: {}; navbar: {}; body: {}; }; }; export {};