import type { LabelOptions } from "../lib/dateLib.js";
/**
 * The ARIA label for next month button.
 *
 * @defaultValue `"Go to the Next Month"`
 * @group Labels
 * @see https://daypicker.dev/docs/translation#aria-labels
 */
export declare function labelNext(
/** Undefined where there's no next month no navigate to. */
month: Date | undefined, options?: LabelOptions): string;
