import type { PathContext } from '../utils/pageContext.ts'; interface PullPathViaTarOptions { /** Whether to git init + commit after applying changes (default: true) */ git?: boolean; } /** * Pull a single path via tar archive. * * Downloads the archive for a single path, compares with target, * displays changes, applies them, and optionally git init + commits. */ export declare const pullPathViaTar: (ctx: PathContext, options?: PullPathViaTarOptions) => Promise; export {}; //# sourceMappingURL=pullPathViaTar.d.ts.map