import { OctokitInstance } from './types.cjs';
export declare function fileLoader({ octokit, owner, repo, }: {
    octokit: OctokitInstance;
    owner: string;
    repo: string;
}): (file: {
    ref: string;
    path: string;
    workspace?: string;
}) => Promise<string>;
