/** @typedef {typeof __propDef.props} StickyProps */ /** @typedef {typeof __propDef.events} StickyEvents */ /** @typedef {typeof __propDef.slots} StickySlots */ export default class Sticky extends SvelteComponentTyped<{ class: any; style: any; settings?: SemanticUI.DropdownSettings.Param; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type StickyProps = typeof __propDef.props; export type StickyEvents = typeof __propDef.events; export type StickySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; style: any; settings?: SemanticUI.DropdownSettings.Param; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};