import * as t from './types';
export declare const SaveUtil: {
    formatSavePath(input?: boolean | string): string | undefined;
    toJson(modules: t.IModule[]): t.IModulesJson;
    write(path: string, modules: t.IModule[]): Promise<void>;
};
