/** * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen} * @codegen <> * @codegenCommand yarn build-glyphs */ interface ComponentMetadata { componentName: string; package: string; packageLoader: () => Promise<{ default: React.ComponentType; }>; } interface ObjectMetadata { keywords: string[]; color: string; icon: string; iconPackage: string; object: ComponentMetadata; tile: ComponentMetadata; } export declare const metadata: Record; export {};