import type { TokenizerThis } from 'marked'; import type { Directive, DirectiveMeta } from './types.js'; export interface DirectiveTokenizerConfig extends DirectiveMeta { type: string; raw: string; content: string; } /** * Create a directive token from a directive string. */ export declare function createToken(this: TokenizerThis, config: DirectiveTokenizerConfig): Directive;