/** * Returns the month of the given date (1-12). * * @example * getMonth("2024-01-25") // 1 * * @param date The date to extract the month from. * @returns The month (1-12). */ export declare function getMonth(date?: Date | string | number | null): number;