import React from 'react';
import type { TdStickyToolProps } from './type';
import type { StyledProps } from '../common';
export interface StickyToolProps extends TdStickyToolProps, StyledProps {
    children?: React.ReactNode;
}
declare const StickyTool: React.FunctionComponent<StickyToolProps & React.RefAttributes<HTMLDivElement>> & {
    StickyItem: React.ForwardRefExoticComponent<import("./StickyItem").StickyItemProps & React.RefAttributes<HTMLDivElement>>;
};
export default StickyTool;
