import React, { CSSProperties } from "react"; import { ColorKeys } from "styled-system"; declare type Props = { message?: any; color?: ColorKeys; style?: CSSProperties; loaderSize?: number; textSize?: number; }; export declare class Loader extends React.Component { render(): JSX.Element; } export {};