export declare const checkIfNumber: (value: string) => boolean; export declare const checkIfAlphaNumeric: (value: string) => boolean; export declare const removeFirstLetter: (value: string) => string; export declare const removeLastLetter: (value: string) => string; export declare const checkKeyIsAlphaNumeric: (key: any) => boolean;