import { InputValue } from './types';
import { InputProps } from './Input';
import { KeyboardEvent } from 'react';

export declare const checkIfValidNumberInput: (event: KeyboardEvent<HTMLElement>) => false | void;
export declare const isInputTyped: (type: InputProps["type"], value: InputValue, active: boolean) => boolean;
