/** * Process built-in and custom directives * * Built-in directives: * - g-show: Toggle element visibility * - g-html: Set innerHTML reactively * - g-text: Set textContent reactively * * Custom directives: Registered via Gyos.directive() * * @param el - Root element to process * @param scope - Scope object for evaluation */ export declare function processDirectives(element: HTMLElement, scope: any, root: HTMLElement): void; /** * Process static directives (no reactivity) * * @param el - Root element to process * @param scope - Scope object for evaluation */ export declare function processDirectivesStatic(el: HTMLElement, scope: any): void; //# sourceMappingURL=directives.d.ts.map