import { HotPatcher } from "hot-patcher";
export interface InternalPutFileContentsOptions {
    contents: string;
    id: string;
    name: string;
    parentID: string;
    patcher: HotPatcher;
    token: string;
}
export declare function putFileContents(options: InternalPutFileContentsOptions): Promise<string>;
