import { FloatButtonProps } from 'antd';
import { FC } from 'react';
import { FLOAT_BUTTON } from '../../Types';
export interface IFloatButtonProps extends FloatButtonProps {
}
export interface IFloatButton {
    ctype: typeof FLOAT_BUTTON;
    props: IFloatButtonProps;
}
declare const FloatButton: FC<IFloatButton>;
export default FloatButton;
