import { OnInit } from '@angular/core'; export declare class ProgressIndicatorComponent implements OnInit { /** * @param status number relating to status * * [status] is a number and can be used when submitting form data: * * - not ready: -1 * - loading: 0 * - done: 1 * * - error: 400 */ status?: number; /** * @param color Hex value or predefined color from scss * * Parameter to customize the appearance of the loader. * Hexadecimal color value e.g. #00ff00 or similar color values 'red', 'green' etc. * * TODO: Default color should come from app settings */ color: string; size: 'small' | 'large'; widthAndHeight: string; /** * @ignore */ constructor(); ngOnInit(): void; }