import { FC } from "react";
interface loaderProps {
    color?: string;
}
declare const Loader: FC<loaderProps>;
export default Loader;
