import { AreDeclaration, AreInstructionSerialized } from '@adaas/are'; import { AreHtmlAddCommentInstructionPayload } from './AreHTML.instructions.types.mjs'; declare class AddCommentInstruction extends AreDeclaration { get content(): string; constructor(props: AreHtmlAddCommentInstructionPayload | AreInstructionSerialized); } export { AddCommentInstruction };