UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

15 lines (14 loc) 662 B
import { ValueProps } from '../../types'; import { NumberFormatProps } from '../../../../components/NumberFormat'; import { IncludeCamelCase } from '../../../../shared/helpers/withCamelCaseProps'; import { SpacingProps } from '../../../../shared/types'; export type Props = Omit<ValueProps<number>, 'defaultValue'> & IncludeCamelCase<Omit<NumberFormatProps, keyof SpacingProps>> & 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;