import type { GClient } from '../GClient'; export interface PluginOptions { name: string; run: (client: GClient) => any; } export declare class Plugin { name: string; run: (client: GClient) => any; options: PluginOptions; constructor(name: string, run: (client: GClient) => any); } //# sourceMappingURL=Plugin.d.ts.map