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> & { StickyItem: React.ForwardRefExoticComponent>; }; export default StickyTool;