/** @typedef {typeof __propDef.props} DashboardBodyProps */ /** @typedef {typeof __propDef.events} DashboardBodyEvents */ /** @typedef {typeof __propDef.slots} DashboardBodySlots */ export default class DashboardBody extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type DashboardBodyProps = typeof __propDef.props; export type DashboardBodyEvents = typeof __propDef.events; export type DashboardBodySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};