/** @typedef {typeof __propDef.props} DashboardSidebarProps */ /** @typedef {typeof __propDef.events} DashboardSidebarEvents */ /** @typedef {typeof __propDef.slots} DashboardSidebarSlots */ export default class DashboardSidebar extends SvelteComponentTyped<{ dark?: boolean; open?: boolean; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type DashboardSidebarProps = typeof __propDef.props; export type DashboardSidebarEvents = typeof __propDef.events; export type DashboardSidebarSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { dark?: boolean; open?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};