import { FC } from 'react'; declare type InputItem = { label: string; key: string; min?: number; max?: number; }; declare type Props = { label?: string; items: Array; onSelect: (key: string, value: number) => void; value: Record; required?: boolean; }; export declare const NumberInputGroup: FC; export {};