import { BaseProps } from "../_utils/props.js"; import React from "react"; //#region src/strength-indicator/types.d.ts interface StrengthIndicatorProps extends BaseProps, React.ComponentPropsWithoutRef<'div'> { /** the number of indicator, default is 3 */ blocks?: number; /** current value */ current?: number; /** block colors */ colors?: string[]; /** hint labels */ labels?: boolean | React.ReactNode[]; } //#endregion export { StrengthIndicatorProps }; //# sourceMappingURL=types.d.ts.map