UNPKG

685 BTypeScriptView Raw
1import React from 'react';
2import type BackTop from './BackTop';
3import type FloatButtonGroup from './FloatButtonGroup';
4import type { FloatButtonElement, FloatButtonProps } from './interface';
5import type PurePanel from './PurePanel';
6export declare const floatButtonPrefixCls = "float-btn";
7declare const InternalFloatButton: React.ForwardRefExoticComponent<FloatButtonProps & React.RefAttributes<FloatButtonElement>>;
8type CompoundedComponent = typeof InternalFloatButton & {
9 Group: typeof FloatButtonGroup;
10 BackTop: typeof BackTop;
11 _InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
12};
13declare const FloatButton: CompoundedComponent;
14export default FloatButton;