export interface CollectionBindingProperty { property: string; field: string; } export interface CollectionBodyComponentSlot { componentName: string; bindingProperties: { [propertyName: string]: CollectionBindingProperty; }; } export interface CollectionBodyContent { bindingProperty?: CollectionBindingProperty; componentSlot?: CollectionBodyComponentSlot; } export interface CollectionBindingTitle { type: 'Amplify.Binding'; content: { bindingProperty: CollectionBindingProperty; }; } export interface CollectionComponentSlotBody { type: 'Amplify.ComponentSlot'; content: { componentSlot: CollectionBodyComponentSlot; }; } export interface CollectionBindingBody { type: 'Amplify.Binding'; content: { bindingProperty: CollectionBindingProperty; }; } //# sourceMappingURL=collection.d.ts.map