import type { SSRHTMLElement } from '../../types';
/**
 * A unique symbol used to represent the attributes and style of an SSR (Server-Side Rendering) HTML element.
 * This symbol can be used as a key for storing or retrieving attributes and styles associated with an SSR HTML element.
 */
export declare const ssrHTMLElementAttributesAndStyle: unique symbol;
/**
 * Create an SSRHTMLElement
 * @returns the created SSRHTMLElement
 */
export declare const ssrHTMLElement: () => SSRHTMLElement;
