/**
 * Defines attribute names used for identifying and managing Fragment elements in the DOM.
 * These attributes are used to track fragment instances and their properties during runtime.
 */
export declare class FragmentAttributes {
    /**
     * Base prefix for all Fragment-specific attributes.
     */
    static readonly tag: "ofr";
    /**
     * Attribute name for storing the unique identifier of a Fragment.
     * Used to locate and manage specific Fragment instances in the DOM.
     */
    static readonly ID: "ofr-id";
    /**
     * Attribute name for storing the Fragment's display name.
     * Used for debugging and identification purposes.
     */
    static readonly NAME: "ofr-name";
}
