export default function getManifest(projectPath: string): {
    read: () => Promise<{
        path: string;
        sha1: string;
    }[]>;
    write: (files: Array<{
        path: string;
        sha1: string;
    }>) => Promise<void>;
};
//# sourceMappingURL=index.d.ts.map