/**
 * Manages HTML attribute names used for DOM element identification and configuration in the App module.
 * These attributes are used to mark and identify specific elements in the application's DOM structure.
 */
export declare class AppAttributes {
    /**
     * The standard prefix for all application-specific attributes.
     * Used to namespace attributes and prevent conflicts with other libraries.
     */
    static readonly tag: "oa";
    /**
     * The attribute name used to identify the main application container element.
     * Used in conjunction with a UUID value to uniquely identify the app instance in the DOM.
     */
    static readonly ID: "oa-id";
}
