import { FC, ReactNode } from 'react'; import { TdStickyProps } from './type'; export interface StickyProps extends TdStickyProps { children?: ReactNode; } declare const Sticky: FC; export default Sticky;