import * as OAuthMethods from "@octokit/oauth-methods"; import type { State } from "../types.js"; type StateOptions = "clientType" | "clientId" | "clientSecret" | "request"; export type ScopeTokenOptions = Omit; export declare function scopeTokenWithState(state: State, options: ScopeTokenOptions): Promise; export interface ScopeTokenInterface { (options: ScopeTokenOptions): Promise; } export {};