/** * Copyright 2020, Verizon Media * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms. */ import React from 'react'; export declare const DnProgress: React.FC; export declare enum DnProgressSizes { default = "", small = "sm", medium = "md", large = "lg" } export declare enum DnProgressBgStatus { default = "", danger = "danger", warning = "warning", success = "success" } export interface DnProgressBarItemProps { key: string; value: number; bgStatus?: DnProgressBgStatus; className?: string; } export interface DnProgressProps { dataList: DnProgressBarItemProps[]; isLoading: boolean; size?: DnProgressSizes; className?: string; } //# sourceMappingURL=DnProgress.d.ts.map