/** * @description * Generates documentation in markdown, given the typings entry point file of a * typescript project. * @CLI */ export declare function tsDocGenMd(parameters: { /** * @description * Path to the typings entry point file. * @default "./dist/index.d.ts" * @flag i */ input?: string; /** * @description * Path to save the generated documentation. If no path is provided then no output file is created. * @default undefined * @flag o */ output?: string; /** * @description * Display in alphabetic order the documentation. * @default false */ sort?: boolean; /** * @description * Prefix for all the hyperlinks of the generated documentation. * @default "" */ prefixHref?: string; /** * @description * Number that specifies the starting heading number of the generated documentation. * @default 3 */ headingStartingNumber?: 2 | 3 | 4 | 5 | 6; /** * @description * Used to format the code. * @default (src) => src */ format?: (src: string) => string; }): string;