import type { Telegram } from '../telegram.js'; export interface Plugin { readonly name: N; readonly dependsOn?: readonly string[]; install: (tg: Telegram) => Ext | Promise; } export declare function createPlugin(spec: Plugin): Plugin; //# sourceMappingURL=plugin.d.ts.map