basant307/AI_Governance_Project
048
1/**2 * @param {CompileOptions | null | undefined} [options]3 * @returns {Compile}4 */5export function compile(options?: CompileOptions | null | undefined): Compile;6export type Media = {7 image?: boolean | undefined;8 labelId?: string | undefined;9 label?: string | undefined;10 referenceId?: string | undefined;11 destination?: string | undefined;12 title?: string | undefined;13};14import type { CompileOptions } from 'micromark-util-types';15import type { Compile } from 'micromark-util-types';16//# sourceMappingURL=compile.d.ts.map