import type { DateTime } from '@gravity-ui/date-utils'; import type { ExtractFunctionType } from "../../types/index.js"; import { i18n } from "./i18n/index.js"; export interface ValidationResult { isInvalid: boolean; errors: string[]; } export declare function getValidationResult(value: DateTime | null | undefined, minValue: DateTime | undefined, maxValue: DateTime | undefined, isDateUnavailable: ((v: DateTime) => boolean) | undefined, timeZone: string, valueTitle?: string, t?: ExtractFunctionType): ValidationResult;