import * as react from 'react'; import { BoxProps } from '@xsolla/xui-primitives-core'; import { ThemeOverrideProps } from '@xsolla/xui-core'; type ProgressLineSize = "sm" | "md" | "lg"; type ProgressLineState = "default" | "error" | "success"; interface ProgressLineProps extends Omit, ThemeOverrideProps { /** * Property for changing height of the line. */ size?: ProgressLineSize; /** * Property for changing color of the inner line. */ state?: ProgressLineState; /** * Property for changing width of the inner line. */ percent?: number; testID?: string; } declare const ProgressLine: react.ForwardRefExoticComponent>; export { ProgressLine, type ProgressLineProps, type ProgressLineSize, type ProgressLineState };