@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
11 lines (10 loc) • 695 B
TypeScript
import type { NumberInputCssVariables, NumberInputFactory, NumberInputHandlers, NumberInputMode, NumberInputNumericType, NumberInputProps, NumberInputStylesNames } from './NumberInput';
export { NumberInput } from './NumberInput';
export type { NumberInputProps, NumberInputStylesNames, NumberInputFactory, NumberInputCssVariables, NumberInputHandlers, NumberInputMode, NumberInputNumericType, };
export declare namespace NumberInput {
type Props<T extends NumberInputNumericType = number> = NumberInputProps<T>;
type StylesNames = NumberInputStylesNames;
type Factory = NumberInputFactory;
type CssVariables = NumberInputCssVariables;
type Handlers = NumberInputHandlers;
}