import { NodeKind } from './node-kind'; import { Node } from './node'; export type InlineCodeDelimiter = '`' | '``' | '```'; export declare class InlineCode implements Node { readonly children: Node[]; readonly code: string; readonly kind = NodeKind.InlineCode; readonly delimiter: string; constructor(code: string, delimiter: InlineCodeDelimiter); toMarkdown(): string; }