import type { StarlightPlugin } from "@astrojs/starlight/types"; interface IntegrationOptions { repo: string; } type PluginOptions = IntegrationOptions; export declare const githubStats: (options: PluginOptions) => StarlightPlugin; export {};