import { ReactNode } from 'react';
export interface CommentTagProps {
    indentation: string;
    children: ReactNode;
    isInline: boolean;
    level: number;
    keyValue: string;
}
export declare function CommentTag(props: CommentTagProps): import("react/jsx-runtime").JSX.Element;
