import { BackTopProps } from 'antd';
import { FC } from 'react';
import { FLOAT_BUTTON_BACK_TOP } from '../../../Types';
export interface IFloatButtonBackTop {
    ctype: typeof FLOAT_BUTTON_BACK_TOP;
    props: BackTopProps;
}
declare const FloatButtonBackTop: FC<IFloatButtonBackTop>;
export default FloatButtonBackTop;
