import { FC } from 'react'; import { InputSize } from '../../types'; export interface ILoaderProps { color?: string; size?: InputSize; theme?: any; } export declare const Loader: FC;