import type { FC } from 'react'; import { type NumberInputProps } from '../NumberInput'; export type InlineEditNumberProps = Omit; /** * Analytics closed-target gap: `NumberInput` spreads consumer props onto its * Ark `Root` wrapper rather than the inner ``, so `data-analytics-*` * land on the wrapper (click analytics still resolve via `closest()`, but the * attribute is not on the real focusable node). The durable fix is to forward * those attributes to the input inside `NumberInput`. See ./ANALYTICS_GAPS.md. */ export declare const InlineEditNumber: FC;