UNPKG

@harvest-profit/npk

Version:
22 lines 704 B
import InputComponent from './Input'; import NumberInput from './NumberInput'; import Group from './Group'; import Control from './Control'; import Label from './Label'; type Input = typeof InputComponent & { Group: typeof Group; Label: typeof Label; Control: typeof Control; Number: typeof NumberInput; Reset: React.FC<{ children: React.ReactNode; }>; }; declare const Input: Input; export default Input; export type { InputProps } from './Input'; export type { GroupProps } from './Group'; export type { LabelProps } from './Label'; export type { ControlProps } from './Control'; export type { NumberInputProps } from './NumberInput'; //# sourceMappingURL=index.d.ts.map