import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; import { ColorsTypes } from "../../interfaces/types/ColorsTypes"; import { SizeTypes } from "../../interfaces/types/SizeTypes"; export interface ProgressIntermittentInterfaceProps extends PropsInterface, TitleSubtitleInterface { color?: ColorsTypes; position?: "default" | "fixed"; size?: SizeTypes; } export declare class ProgressIntermittent extends PureComponent { constructor(props: any); render(): JSX.Element; }