import { InlineCode } from 'mdast'; import { Node } from 'unist'; /** * @param value - The value of the inline code. * @returns The inline code. */ export declare function createInlineCode(value: string): InlineCode; /** * Type guard for InlineCode. * * @param node - The node to test. * @returns True if node is InlineCode. */ export declare function isInlineCode(node: Node): node is InlineCode; /** * Type assertion for InlineCode. * * @param node - The node to test. */ export declare function assertInlineCode(node: Node): asserts node is InlineCode;