export interface SerializableComponentInfo { type: 'Serializable'; name: string; } export interface TemplateComponentInfo { type: 'Template'; } export declare type ComponentInfo = null | TemplateComponentInfo | SerializableComponentInfo; export declare type TemplateGenerator = (file: string) => string;