import type { CssTime } from '@breadstone/mosaik-themes'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { TextAlignment } from '../../../Types/TextAlignment'; /** * Represents the `INumberCounterElementProps` interface. * * @public */ export interface INumberCounterElementProps extends IDisableableProps, IVariantableProps { from: number; to: number; duration: CssTime; readonly: boolean; alignment: TextAlignment; } //# sourceMappingURL=INumberCounterElementProps.d.ts.map