import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { IRangeBaseElementProps } from '../Abstracts/IRangeBaseElementProps'; import type { CssLength } from '@breadstone/mosaik-themes'; /** * Represents the `IProgressBarElementProps` interface. * * @public */ export interface IProgressBarElementProps extends IVariantableProps, IOrientableProps, IDisableableProps, ILabelableProps, IRangeBaseElementProps { thickness: CssLength; isIndeterminate: boolean; segments: number; } //# sourceMappingURL=IProgressBarElementProps.d.ts.map