import * as React from 'react';
import { type HTMLAttributesWithRootRef } from '../../types';
export interface ProgressProps extends HTMLAttributesWithRootRef<HTMLDivElement> {
    /**
     * Стиль отображения прогрессбара.
     */
    appearance?: 'accent' | 'positive' | 'negative' | `var(--${string})` | `#${string}`;
    /**
     * Значение прогресса.
     */
    value?: number;
    /**
     * Высота элемента.
     */
    height?: number;
    /**
     * Сделать прогрессбар прозрачным.
     */
    trackDisable?: boolean;
}
/**
 * @see https://vkui.io/components/progress
 */
export declare const Progress: ({ value, height, trackDisable, appearance, ...restProps }: ProgressProps) => React.ReactNode;
//# sourceMappingURL=Progress.d.ts.map