export declare const markdownDetails: ({ title, content, codeType, contentWrapper, }: {
    title: string;
    content: string;
    contentWrapper?: string | null;
    codeType?: string;
}) => string;
