import type { DirEntry, PathStat } from "./types.js"; import { isPinnedHelperUnavailable } from "./pinned-python.js"; type HelperOperation = "stat" | "readdir" | "mkdirp" | "remove" | "rename"; export { isPinnedHelperUnavailable }; export declare function runPinnedHelper(operation: HelperOperation, rootDir: string, payload: Record): Promise; export declare function helperStat(rootDir: string, relativePath: string): Promise; export declare function helperReaddir(rootDir: string, relativePath: string, withFileTypes: false): Promise; export declare function helperReaddir(rootDir: string, relativePath: string, withFileTypes: true): Promise; //# sourceMappingURL=pinned-helper.d.ts.map