export interface ChipQuantityEditorProps { /** * The current quantity displayed in the chip. */ quantity: number; /** * Optional unit appended after the quantity (e.g. "m", "kg"). */ unit?: string; /** * Indicates if the editor is disabled. A disabled chip is not clickable. */ disabled?: boolean; /** * Called with the new quantity when the user commits a valid change (strictly positive integer). */ onChange: (quantity: number) => void; } declare const ChipQuantityEditor: ({ quantity, unit, disabled, onChange }: ChipQuantityEditorProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default ChipQuantityEditor;