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