import type { ComponentProps } from "react"; import type { DynamicStringEnumKeysOf, FlowbiteColors, FlowbiteSizes, ThemingProps } from "../../types"; export interface ProgressTheme { base: string; label: string; bar: string; color: ProgressColor; size: ProgressSizes; } export interface ProgressColor extends Pick { [key: string]: string; default: string; } export interface ProgressSizes extends Pick { [key: string]: string; } export interface ProgressProps extends ComponentProps<"div">, ThemingProps { color?: DynamicStringEnumKeysOf; labelProgress?: boolean; labelText?: boolean; progress: number; progressLabelPosition?: "inside" | "outside"; size?: DynamicStringEnumKeysOf; textLabel?: string; textLabelPosition?: "inside" | "outside"; } export declare const Progress: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;