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