import { ISaveFile, ISaveBatch } from '../../types.js'; import 'prettier'; import 'https'; import 'openapi-types'; import 'ora'; declare function save({ fileName, data, location, beautify, extention, comment, }: ISaveFile): Promise; declare function saveBatch({ files, location, beautify, extention }: ISaveBatch): Promise<(void | null)[]>; export { save, saveBatch };