/** @typedef {typeof __propDef.props} SeparatorProps */ /** @typedef {typeof __propDef.events} SeparatorEvents */ /** @typedef {typeof __propDef.slots} SeparatorSlots */ /** * Separator * * Creates a horizontal separator that fills horizontal space * * Css Variables: * - separatorBg (default: #c0c0c0): Color of the separator */ export default class Separator extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, {}> { } export type SeparatorProps = typeof __propDef.props; export type SeparatorEvents = typeof __propDef.events; export type SeparatorSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};