import { ISaveFile, ISaveBatch } from '../../types.cjs';
import 'prettier';
import 'https';
import 'openapi-types';
import 'ora';

declare function save({ fileName, data, location, beautify, extention, comment, }: ISaveFile): Promise<void>;
declare function saveBatch({ files, location, beautify, extention }: ISaveBatch): Promise<(void | null)[]>;

export { save, saveBatch };
