import { ValidationError, ValidationResult } from './types'; export declare const hasValue: (value: any) => boolean; export declare const validateAll: (validations: (() => ValidationResult)[]) => ErrorType | undefined; export declare const getNumberFromStringInput: (inputValue: string | undefined) => number | undefined; export declare const stringContainsCharacters: (value: string, characters: string[]) => boolean;