import React from 'react'; import { SpinProps } from 'antd'; import './index.less'; interface BtriSpinProps extends SpinProps { onlyText?: boolean; direction?: 'horizontal'; } declare function Spin(props: BtriSpinProps): React.JSX.Element; export { Spin };