export declare const DATE_FORMAT = "dd.MM.yyyy"; export declare const DATE_MASK: (string | RegExp)[]; export declare const DATE_WITH_TIME_LENGTH: number; export declare const isCompleteDateInput: (input: string) => boolean; export declare const parseDateString: (value: string, dateFormat?: string) => Date; export declare const isValidTimeFormat: (value: string) => boolean; export declare const isValid: (inputValue: string) => boolean; export declare const format: (value: string) => string; export declare const parseTimestampToDate: (timestamp: number) => string; export declare const getDateWithoutTime: (value: string) => Date; export declare const getFullDateTime: (value: string) => Date; export declare const addTimeToDate: (value: string) => string;