import React from 'react';
declare type Props = {
    color?: string;
    width?: string;
};
declare const InfinitySpin: ({ color, width, }: Props) => React.ReactElement;
export default InfinitySpin;
