import { RVOptionsBarStyle, RVReportTypes } from '../../types'; export declare class ProgressBar { /** * To indicate if its an invoice or bill */ readonly reportType?: RVReportTypes.INVOICES | RVReportTypes.BILLS; /** * For unpaid amount of an invoice or bill */ readonly unpaidAmount: number; /** * For paid amount of an invoice or bill */ readonly paidAmount: number; /** * For overdue amount of an invoice or bill */ readonly overdueAmount: number; /** * For whitelabeling styling */ readonly options?: RVOptionsBarStyle; private _options; componentWillLoad(): void; private normalize; private titleMapping; render(): HTMLElement; }