interface Element { file: string; type: string; children?: string[]; extend?: { name: string; namespace: string; }; } interface VanillaDefs { [key: string]: { [key: string]: Element; }; } export declare const vanilladefs: VanillaDefs; export {};