import type { MergeDotfilesResponseInterface } from "../types/dotfiles.type";
import type { ErrorInterface } from "../types/error.type";
/**
 * Generate Markdown
 * =====================
 *
 * Each merge json and generate markdown
 *
 * @param {MergeDotfilesResponseInterface} json - merged JSON object from package.json and all-shieldsrc file
 *
 * @return {Promise<ErrorInterface>} { error } - description of error, catch error
 *
 */
export declare const generate: ({ json }: MergeDotfilesResponseInterface) => Promise<ErrorInterface>;
declare const _default: {
    generate: ({ json }: MergeDotfilesResponseInterface) => Promise<ErrorInterface>;
};
export default _default;
