import { BuildCustomTypeFilePathArgs } from "./buildCustomTypeFilePath.js"; import { ReadProjectFileArgs } from "./readProjectFile.js"; import { BufferEncoding } from "./types.js"; export type ReadCustomTypeFileArgs = BuildCustomTypeFilePathArgs & ReadProjectFileArgs; export declare function readCustomTypeFile(args: ReadCustomTypeFileArgs): Promise; export declare function readCustomTypeFile(args: ReadCustomTypeFileArgs & { encoding: BufferEncoding; }): Promise;