export interface IAnchorBox {
    scrollTarget: Element | Window;
    defaultAnchor: string;
    forceActiveAnchor: Function;
    view: {
        top?: number;
        bottom?: number;
    };
}
export declare type AnchorActiveChangeSource = 'anchor-link' | 'scroll' | 'click-inside' | 'initial';
