import React from 'react'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface SpinProps { spinning?: boolean; children?: React.ReactNode; } declare const Spin: { (props: SpinProps): JSX.Element; title: string; icon: JSX.Element; isContainer: boolean; propsDef: PropsTypes[]; }; export default Spin;