/** @typedef {typeof __propDef.props} SidebarSlotProps */ /** @typedef {typeof __propDef.events} SidebarSlotEvents */ /** @typedef {typeof __propDef.slots} SidebarSlotSlots */ /** * SidebarSlot * * Space for non-link elements to be placed in a `Sidebar` * * Css Variables: * - sidebarSlot (default: 400 1rem sans-serif): Font in the slot * - sidebarSlotText (default: #161616): Text color in the slot */ export default class SidebarSlot extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type SidebarSlotProps = typeof __propDef.props; export type SidebarSlotEvents = typeof __propDef.events; export type SidebarSlotSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};