import { Node } from 'unist';
export declare class Rehype {
    static stringify(node: Node): string;
    static parse(html: string): Node;
    static parseFragment(html: string): Node;
}
