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