/// export declare type CommentProps = { children?: React.ReactNode; openComment?: string; closeComment?: string; }; /** * Used to render HTML comments needed for magnolia editor to work. */ export declare const Comment: ({ children, openComment, closeComment }: CommentProps) => JSX.Element;