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