export declare enum ProgressTrackDataAttributes {
    /**
     * Present when the progress has completed.
     */
    complete = "data-complete",
    /**
     * Present when the progress is in interminate state.
     */
    indeterminate = "data-indeterminate",
    /**
     * Present while the progress is progressing.
     */
    progressing = "data-progressing"
}
