tdesign-react
Version:
TDesign Component for React
12 lines (11 loc) • 526 B
TypeScript
import React from 'react';
import type { TdStickyToolProps } from './type';
import type { StyledProps } from '../common';
import type { StickyItemProps } from './StickyItem';
export interface StickyToolProps extends TdStickyToolProps, StyledProps {
children?: React.ReactNode;
}
declare const StickyTool: React.FunctionComponent<StickyToolProps & React.RefAttributes<HTMLDivElement>> & {
StickyItem: React.ForwardRefExoticComponent<StickyItemProps & React.RefAttributes<HTMLDivElement>>;
};
export default StickyTool;