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