export type SourceFetchOptions = { dest?: string; }; export type FetchedFile = { content: string; }; export type CheckedOutSource = { dir: string; }; export declare function fetchSourceFile(repoPath: string): Promise; export declare function checkoutSource(repoPath: string, opts?: SourceFetchOptions): Promise; //# sourceMappingURL=checkout.d.ts.map