@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
14 lines (13 loc) • 579 B
TypeScript
import { ValueProps } from '../../types';
import { NumberFormatProps } from '../../../../components/NumberFormat';
import { IncludeCamelCase } from '../../../../shared/helpers/withCamelCaseProps';
export type Props = Omit<ValueProps<number>, 'defaultValue'> & IncludeCamelCase<NumberFormatProps> & Partial<{
defaultValue?: number | string;
minimum?: number;
maximum?: number;
}>;
declare function NumberValue(props: Props): import("react/jsx-runtime").JSX.Element;
declare namespace NumberValue {
var _supportsSpacingProps: boolean;
}
export default NumberValue;