export type StrategyOptions = { /** Client ID for your OAuth app */ clientId?: string; /** * list of [OAuth scopes](https://docs.github.com/en/developers/apps/scopes-for-oauth-apps#available-scopes). * Defaults to no scopes. */ scopes?: string[]; /** * Custom environment variable name. * defaults to `GITHUB_TOKEN_SCOPE1_SCOPE2_etc` */ env?: string | false; }; export declare let Octokit: any;