import type { Stats } from "node:fs"; /** * Configuration for a {@link assertFileExists} call. */ export interface AssertFileExistsConfig { /** * Underlying filesystem call. Mostly for unit testing. */ statSync?: (path: string, options: { throwIfNoEntry: false; }) => (undefined | Stats); } export declare const assertFileExists: (filePath: string, config?: AssertFileExistsConfig) => Stats; //# sourceMappingURL=assert-file-exists.d.ts.map