import React from 'react';
import type { CnAffixProps } from './types';
/**
 * @category 组件
 *  固钉
 */
export declare const CnAffix: {
    (prop: CnAffixProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
    displayName: string;
    defaultProps: {
        container: string;
        disabled: boolean;
        offsetTop: number;
        zIndex: number;
    };
};
