import { BaseProps } from "../_utils/props.js"; import React from "react"; //#region src/scroll-number/types.d.ts interface ScrollNumberProps extends BaseProps, Omit, 'title' | 'prefix'> { /** The numeric value to display */ value?: number | string; /** Title displayed above the value */ title?: React.ReactNode; /** Animation duration in milliseconds */ duration?: number; /** Number of decimal places to display */ precision?: number; /** Thousands separator character */ groupSeparator?: string; /** Prefix node rendered before the number */ prefix?: React.ReactNode; /** Suffix node rendered after the number */ suffix?: React.ReactNode; /** Custom class name applied to the value container */ valueClassName?: string; /** Custom style applied to the value container */ valueStyle?: React.CSSProperties; } //#endregion export { ScrollNumberProps }; //# sourceMappingURL=types.d.ts.map