import { ClassName, Intent } from '../types'; export declare type ProgressSharedProps = { $color?: string; $backgroundColor?: string; $value: number; $intent: Intent; $withLabel: boolean; $infinite?: boolean; }; export declare type ProgressProps = { className?: ClassName; color?: string; backgroundColor?: string; value?: number; intent?: Intent; infinite?: boolean; }; export type { Intent };