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; } /** * The withdrawal amount keypad. Both dimensions come from the container, so * the keys grow with the device rather than leaving a void above them. * * Emits keys rather than a value: `applyNumpadKey` owns the grammar. */ export declare function NumPad({ onPressKey, backspaceAccessibilityLabel, }: NumPadProps): import("react").JSX.Element; //# sourceMappingURL=NumPad.d.ts.map