import React from 'react';
type SpinnerProps = {
  label?: string;
};
declare const Spinner: React.FC<SpinnerProps>;
export default Spinner;
