import { default as React } from 'react';
interface Props {
    id?: string;
    isLoading?: boolean;
    size?: string;
    color?: string;
    className?: string;
}
declare const Spinner: React.FC<Props>;
export default Spinner;
