import React from 'react';
import { IBaseElement, IStyle } from '../types';
export interface ISpyScroll extends IBaseElement {
    ids?: Array<string>;
    offset?: number;
    offsetStart?: number;
    parent?: HTMLElement;
    addClassName?: string;
    addStyle?: IStyle;
    onActive?: (value: string) => any;
}
declare const SpyScroll: React.FC<ISpyScroll>;
export default SpyScroll;
