/** @jsxImportSource react */ import { Widget, WidgetConfig, WidgetStyleConfig } from "../ui/Widget"; import { RenderingContext } from "../ui/RenderingContext"; import { Instance } from "../ui/Instance"; import { NumberProp, BooleanProp, StringProp } from "../ui/Prop"; export interface ProgressBarConfig extends WidgetConfig, WidgetStyleConfig { /** Progress value, a number between `0` and `1`. Default value is `0`. */ value?: NumberProp; /** Defaults to `false`. Set to `true` to make it look disabled. */ disabled?: BooleanProp; /** Progress bar annotation. */ text?: StringProp; } export declare class ProgressBar extends Widget { baseClass: string; disabled?: BooleanProp; constructor(config?: ProgressBarConfig); declareData(...args: Record[]): void; render(context: RenderingContext, instance: Instance, key: string): React.ReactNode; } //# sourceMappingURL=ProgressBar.d.ts.map