import { LinkedItem } from '@skidding/linked-list'; import { Context } from 'react'; import { Plug } from './types'; declare type SlotContextValue = undefined | LinkedItem; export declare function getSlotContext( slotName: string, ): Context; export {};