import type { NumpadKey } from '../../utils/numpadInput'; export interface NumPadProps { onPressKey: (key: NumpadKey) => void; /** The delete key carries a glyph, so its label can't come from the key. */ backspaceAccessibilityLabel: string; /** Makes every keypad control disabled and non-interactive. */ disabled?: boolean; } /** * Emits keys rather than a value: `applyNumpadKey` owns the grammar. */ export declare const NumPad: import("react").MemoExoticComponent<({ onPressKey, backspaceAccessibilityLabel, disabled, }: NumPadProps) => import("react").JSX.Element>; //# sourceMappingURL=NumPad.d.ts.map