import { HotPatcher } from "hot-patcher";
export interface InternalGetFileContentsOptions {
    id: string;
    patcher: HotPatcher;
    token: string;
}
export declare function getFileContents(options: InternalGetFileContentsOptions): Promise<string>;
