import * as React from 'react'; export interface KeypadProps { className?: string; header?: React.ReactNode; showEmptyHeader?: boolean; disabledKeys?: string[]; confirm?: boolean; confirmLabel?: string; confirmDisabled?: boolean; active?: boolean; customKey?: string; onKeypadPress?: (v: string) => void; onClear?: () => void; onHidePress?: () => void; } export declare enum SPECIAL_KEY { confirm = "confirm", delete = "delete" } declare const CustomKeypad: React.ForwardRefExoticComponent>; export default CustomKeypad;