import React from "react"; export interface IAnimatedLoader { height?: string; width?: string; color?: string; round?: boolean; margin?: string; marginRight?: string; isBox?: boolean; withImage?: boolean; } declare type AnimatedLoaderProps = { loaderStyle?: IAnimatedLoader; }; declare class AnimatedLoader extends React.Component { render(): JSX.Element | null; } export default AnimatedLoader; //# sourceMappingURL=index.d.ts.map