import type { Ref, MaybeRefOrGetter } from 'vue'; import type { Config } from '../types'; /** * The main composable to access or customize md, renderer and content. * * @param params - An object containing the following properties: * - `disable` - The markdown-it rules to disable * - `enable` - The markdown-it rules to enable * - `new` - Whether to use a blank markdown-it instance * - `options` - The markdown-it options * - `plugins` - The markdown-it plugins * - `source` - The markdown source string * * @returns an object with the following properties: * - `blank` - whether a new md instance is used * - `content` - the rendered markdown content * - `md` - a blank markdown-it instance */ export declare const useNuxtMarkdown: (params?: { source?: MaybeRefOrGetter; } & Config) => { blank: import("vue").ComputedRef; content: import("vue").ComputedRef; md: Ref; };