import { ComparisonOptions } from './types.js'; export declare function isCorrectFormat(value: string | undefined): boolean; export declare function isWithinLowerBound(value: Date | string | undefined, minDate: Date, options?: ComparisonOptions): boolean; export declare function isWithinUpperBound(value: Date | string | undefined, maxDate: Date, options?: ComparisonOptions): boolean;