/** * Generates the TypeScript declaration files for the specified project, using the provided `tsconfig.json` file. * * Any existing declaration files in the `dist-types` directory will be deleted before generating the new ones. * * If the `tsc` command exits with a non-zero exit code, the process will be terminated with the same exit code. * * @param tsconfigFilePath {string} The path to the `tsconfig.json` file to use for generating the declaration files. * @returns {Promise} A promise that resolves when the declaration files have been generated. */ export declare function generateTypeDeclarations(tsconfigFilePath: string): Promise;