UNPKG

tdesign-react

Version:
11 lines (10 loc) 496 B
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;