/// import type { StyleValues } from './types'; export interface Props { id: string; inputValue: StyleValues; onChange: (val: string) => void; } /** * This component is the same as NumberInput but it allows the value to be initialized to 'auto'. * The value cannot be reset to 'auto' once it has been changed though. */ export declare const NumberInputAllowingAuto: ({ id, inputValue, onChange }: Props) => JSX.Element;