import { GeneralDirective, StructuralDirective } from './types.js'; export interface GeneralDirectiveRegistry { [key: string]: GeneralDirective; } export interface StructuralDirectiveRegistry { [key: string]: StructuralDirective; } export declare const structuralDirectives: StructuralDirectiveRegistry; export declare const generalDirectives: GeneralDirectiveRegistry; export declare const addDirective: (name: string, directive: GeneralDirective | StructuralDirective) => GeneralDirective | StructuralDirective; //# sourceMappingURL=index.d.ts.map