/// import type { EleventyConfig } from '@11ty/eleventy'; import type { Options } from './schemas.js'; export type { EleventyConfig } from '@11ty/eleventy'; export type { Options } from './schemas.js'; /** * Plugin that sends Telegram messages when Eleventy starts/finishes building * your site. * * @public * @param eleventyConfig - {@link EleventyConfig | Eleventy configuration}. * @param options - Plugin {@link Options | options}. * * @remarks * The [Telegram sendMessage API](https://core.telegram.org/bots/api#sendmessage) * allows text messages of 1-4096 characters (after entities parsing). */ export declare const telegramPlugin: (eleventyConfig: EleventyConfig, options?: Options) => void; //# sourceMappingURL=index.d.ts.map