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