1 | import { Progress as ProgressDefinition } from '.';
|
2 | import { View } from '../core/view';
|
3 | import { Property, CoercibleProperty } from '../core/properties';
|
4 | export declare class ProgressBase extends View implements ProgressDefinition {
|
5 | value: number;
|
6 | maxValue: number;
|
7 | }
|
8 | /**
|
9 | * Represents the observable property backing the value property of each Progress instance.
|
10 | */
|
11 | export declare const valueProperty: CoercibleProperty<ProgressBase, number>;
|
12 | /**
|
13 | * Represents the observable property backing the maxValue property of each Progress instance.
|
14 | */
|
15 | export declare const maxValueProperty: Property<ProgressBase, number>;
|