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