import type { OctokitOptions } from "@octokit/core";
import { Octokit } from "@octokit/core";
import type { CacheOptions } from "./types.js";
export declare const cache: (octokit: Octokit, octokitOptions: OctokitOptions) => {};
declare module "@octokit/core" {
    interface OctokitOptions {
        cache?: CacheOptions;
    }
}
