///
import * as PropTypes from 'prop-types';
import { BaseComponent } from '../../Utilities';
import { IStickyProps } from './Sticky.types';
import { IScrollablePaneContext } from '../ScrollablePane/ScrollablePane.base';
export interface IStickyState {
isStickyTop: boolean;
isStickyBottom: boolean;
}
export interface IStickyContext {
scrollablePane: PropTypes.Requireable