import { AttributesObject } from 'types';
export interface DeclarationTagProps {
    indentation: string;
    tagKey: string;
    attributes: AttributesObject;
    keyValue: string;
}
export declare function DeclarationTag(props: DeclarationTagProps): import("react/jsx-runtime").JSX.Element;
