/**
 * This tool generates new agenda files in a consistent format. When making
 * changes to future agenda templates, please make the changes to this tool
 * first, then generate files.
 *
 * To use this tool, provide year and month as command arguments
 *
 * wgutils agenda gen 2023 6
 *
 */
import { Config } from "../../interfaces.js";
export declare function generateAgendas(config: Config, options: {
    year: string;
    month: string;
}): Promise<void>;
