import { Literal } from 'unist';
/**
 * Unist literal node with string value like code blocks or text nodes
 */
export interface TextNode extends Literal {
    value: string;
}
/**
 * Regex pattern to match links to be resolved by the link-reference provider
 */
export declare const URL_PATTERN: RegExp;
/**
 * Regex pattern to identify strings as links and then making them clickable
 */
export declare const URL_PATTERN_AUTOLINK: RegExp;
