import { ValidationDetails } from "@storm-stack/types";
import { StormDateTime } from "../storm-date-time";
/**
 * Validates the day of the month
 *
 * @param value - The StormDateTime value to validate
 * @returns A ValidationDetails object if invalid, null if valid
 */
export declare const validateDayOfMonth: (value: StormDateTime) => ValidationDetails | null;
