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