import type { JSX } from '../../stencil-public-runtime';
import { BaseWebComponent } from '../../internal/functional-components/base-web-component';
import type { WebComponentInterface } from '../../internal/functional-components/generic-types';
import type { ProgressApi } from '../../internal/functional-components/progress/api';
import type { ProgressVariantType } from '../../internal/props';
export declare class KolProgress extends BaseWebComponent<ProgressApi> implements WebComponentInterface<ProgressApi> {
    private readonly ctrl;
    _label?: string;
    watchLabel(value?: string): void;
    _max: number;
    watchMax(value?: number): void;
    _unit?: string;
    watchUnit(value?: string): void;
    _value: number;
    watchValue(value?: number): void;
    _variant?: ProgressVariantType;
    watchVariant(value?: ProgressVariantType): void;
    liveValue: number;
    componentWillLoad(): void;
    disconnectedCallback(): void;
    render(): JSX.Element;
}
