import type { Preset } from '.'; /** * Convert jsdoc for an es export from a javascript/typescript file to markdown. * * ##### Example * * `` * * @param source {string} relative file path containing the export with jsdoc that should be copied to markdown * @param export {string} the name of the export * @param headerLevel {1|2|3|4|5} Determines if the export will correspond to a H1, H2, H3, H4 or H5. Nested headers will increment from this value. @default 4 */ export declare const markdownFromJsdoc: Preset<{ source: string; export?: string; headerLevel?: number; }>;