import type { JSX } from 'react';
export type LoadingProps = {
    color: string;
    size: string;
};
export declare function SpinnerLoader({ color, size }: LoadingProps): JSX.Element;
