import type { DateTimeInput, DateTimeOptions } from "../storm-date-time";
/**
 * Type-check to determine if `value` is a valid *date-time*
 * @param value - The value to check
 * @param options - The options to use
 * @returns A boolean representing whether the value is a valid *date-time*
 */
export declare function validateDateTime(value: DateTimeInput, options?: DateTimeOptions): boolean;
