/**
 * Generates a copyright statement based on the build year and current year.
 *
 * @param {number} buildYear The year the content was originally built.
 * @returns {string} A copyright statement, e.g. "Copyright © 2022-2025".
 */
export declare const copyright: (buildYear: number) => string;
