import type { FC, ReactNode } from 'react'; import type { BasicInputProps } from './BasicInput'; export type NumberInputProps = Omit, 'type'> & { unit?: ReactNode; }; export declare const NumberInput: FC;