import type { CssLength } from '@breadstone/mosaik-themes'; 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'; /** * Represents the `IProgressRingElementProps` interface. * * @public */ export interface IProgressRingElementProps extends IVariantableProps, IOrientableProps, IDisableableProps, ILabelableProps, IRangeBaseElementProps { thickness: CssLength; radius: CssLength; isIndeterminate: boolean; } //# sourceMappingURL=IProgressRingElementProps.d.ts.map