/// import type { StyleValues } from './types'; export interface Props { id: string; inputValue: StyleValues; onChange: (val: string) => void; zeroPlaceholder?: string | number; } export declare const NumberInput: ({ id, inputValue, onChange, zeroPlaceholder }: Props) => JSX.Element;