import { Slot } from './slot';
export declare class SlotPointer {
    readonly position: number | null;
    readonly slot: Slot;
    constructor(position: number | null, slot: Slot);
    withSlot(slot: Slot): SlotPointer;
}
