import React from 'react';
import { StyledProps } from '../common';
import { TdAffixProps } from './type';
export interface AffixProps extends TdAffixProps, StyledProps {
}
export interface AffixRef {
    handleScroll: () => void;
}
declare const Affix: React.ForwardRefExoticComponent<AffixProps & React.RefAttributes<AffixRef>>;
export default Affix;
