/**
 * Defines attribute names used for identifying and managing Function-bound elements in the DOM.
 * These attributes track elements with attached function handlers during runtime.
 */
export declare class FunctionAttributes {
    /**
     * Base prefix for all Function-specific attributes.
     */
    static readonly tag: "ofu";
    /**
     * Attribute name storing the unique identifier of a function-bound element.
     * Used to locate and manage specific function handlers in the DOM.
     */
    static readonly ID: "ofu-id";
    /**
     * Attribute name storing the function name attached to an element.
     * Used for identifying the bound function and debugging purposes.
     */
    static readonly NAME: "ofu-name";
}
