import { NumberFieldProps } from 'react-aria-components'; import { BaseInputProps } from '../../atoms/types'; export declare const numberInputVariants: (props?: ({ variant?: "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type NumberInputValue = number | string | undefined; export type NumberInputProps = NumberFieldProps & BaseInputProps & { isGroupingThousands?: boolean; isNumericString?: boolean; decimalScale?: number; allowNegative?: boolean; suffix?: string; prefix?: string; onChange?: (value: NumberInputValue) => void; }; //# sourceMappingURL=types.d.ts.map