tdesign-react
Version:
TDesign Component for React
11 lines (10 loc) • 496 B
TypeScript
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;