/** @typedef {typeof __propDef.props} DividerProps */ /** @typedef {typeof __propDef.events} DividerEvents */ /** @typedef {typeof __propDef.slots} DividerSlots */ export default class Divider extends SvelteComponentTyped<{ class?: string; inverted?: boolean; style?: {}; aligned?: string; vertical?: boolean; fitted?: boolean; clearing?: boolean; type?: string; section?: boolean; hidden?: boolean; ignored?: boolean; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type DividerProps = typeof __propDef.props; export type DividerEvents = typeof __propDef.events; export type DividerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; inverted?: boolean; style?: {}; aligned?: string; vertical?: boolean; fitted?: boolean; clearing?: boolean; type?: string; section?: boolean; hidden?: boolean; ignored?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};