import * as OAuthMethods from "@octokit/oauth-methods"; import type { State } from "../types.js"; export type DeleteTokenOptions = { token: string; }; export declare function deleteTokenWithState(state: State, options: DeleteTokenOptions): Promise; export interface DeleteTokenInterface { (options: DeleteTokenOptions): Promise; }