import { FC } from 'react';
import { EColors } from '../../types/EColors';
interface SmallLoaderProps {
    width?: number;
    height?: number;
    color?: EColors;
}
declare const SmallLoader: FC<SmallLoaderProps>;
export default SmallLoader;
