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