import { FC } from 'react'; interface SpinnerProps { size?: number; borderWidth?: number; } declare const Spinner: FC; export default Spinner;