declare const createEmptyFileIfNotExists: (file: string) => void;
declare const assertFileExists: (file: string) => void;
declare const hasCommandLineArgument: (arg: string) => boolean;
declare const isBinaryFile: (buffer: Buffer | String) => boolean;
declare const findProgramOnPath: (programName: string) => string | null;
declare const searchForExecutable: (folderInProgramInFiles?: string, fileName?: string) => string;
declare const fixFilePathSlashes: (path_: string) => string;
declare const stringifyKeysInOrder: (data: any) => string;
export { createEmptyFileIfNotExists, assertFileExists, hasCommandLineArgument, isBinaryFile, findProgramOnPath, searchForExecutable, fixFilePathSlashes, stringifyKeysInOrder, };
