import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { top?: boolean; bottom?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type StickyProps = typeof __propDef.props; export declare type StickyEvents = typeof __propDef.events; export declare type StickySlots = typeof __propDef.slots; export default class Sticky extends SvelteComponentTyped { } export {};