import { ReactNode } from 'react'; /** * The following list has been taken from w3.org: * https://www.w3.org/TR/2011/WD-html-markup-20110113/syntax.html#void-elements */ export declare const VOID_ELEMENTS: string[]; export declare const DEFAULT_TAG_NAME = "p"; export interface MarkupProps { children?: ReactNode; /** the tag content string */ tagName?: string; className?: string; content?: string | null; } /** * An element for displaying formatted text - e.g., a paragraph or heading. By default, this will be a paragraph (`p`). */ export declare const Markup: ({ children, tagName, className, content, ...attrs }: MarkupProps) => import("react/jsx-runtime").JSX.Element; export default Markup;