/** * Spinner code license here (MIT): https://github.com/tobiasahlin/SpinKit/blob/master/LICENSE */ import React, { ComponentProps } from 'react'; import { Spin as AntSpin } from 'antd'; type IndicatorProps = { size?: number; className?: string; }; type SpinProps = Omit, 'size'> & { size?: number; renderBackground?: boolean; }; export declare const Indicator: ({ size, className, }: IndicatorProps) => React.ReactNode; declare const Spin: (props: SpinProps) => React.ReactNode; export default Spin;