/************
Processor: ts
************/

import __beyond_dep_def_0 from 'react';
// definitions.ts
declare namespace ns_0 {
  export interface IProps {
    value: number;
    maxValue?: number;
    variant?: string;
    type?: string;
  }
}


// index.tsx
declare namespace ns_1 {
  import React = __beyond_dep_def_0;
  import IProps = ns_0.IProps;
  export function ProgressBar(props: IProps): React.JSX.Element;
}


export import ProgressBar = ns_1.ProgressBar;

export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };