export declare const productCardMeta: { readonly name: "ProductCard"; readonly category: "pattern"; readonly description: "A generic card for displaying product or article information."; readonly directManifestNode: true; readonly allowedChildren: readonly []; readonly events: { readonly press: { readonly label: "Press"; readonly eventType: "productCard.press"; readonly description: "Emitted when the product card is pressed."; readonly payloadFields: readonly []; }; readonly primaryAction: { readonly label: "Primary action"; readonly eventType: "productCard.primaryAction"; readonly description: "Emitted when the primary product card action is pressed."; readonly payloadFields: readonly []; }; readonly secondaryAction: { readonly label: "Secondary action"; readonly eventType: "productCard.secondaryAction"; readonly description: "Emitted when the secondary product card action is pressed."; readonly payloadFields: readonly []; }; }; readonly props: { readonly title: { readonly type: "string"; readonly category: "Content"; readonly label: "Title"; }; readonly subtitle: { readonly type: "string"; readonly category: "Content"; readonly label: "Subtitle"; }; readonly description: { readonly type: "string"; readonly category: "Content"; readonly label: "Description"; }; readonly brand: { readonly type: "string"; readonly category: "Content"; readonly label: "Brand"; }; readonly vendor: { readonly type: "string"; readonly category: "Content"; readonly label: "Vendor"; }; readonly imageUrl: { readonly type: "string"; readonly category: "Content"; readonly label: "Image URL"; }; readonly imageAlt: { readonly type: "string"; readonly category: "Content"; readonly label: "Image Alt Text"; }; readonly price: { readonly type: "string"; readonly category: "Content"; readonly label: "Price"; }; readonly currency: { readonly type: "string"; readonly category: "Content"; readonly label: "Currency"; }; readonly badges: { readonly type: "array"; readonly category: "Content"; readonly label: "Badges"; }; readonly meta: { readonly type: "array"; readonly category: "Content"; readonly label: "Meta"; }; readonly primaryActionLabel: { readonly type: "string"; readonly category: "Content"; readonly label: "Primary Action Label"; }; readonly secondaryActionLabel: { readonly type: "string"; readonly category: "Content"; readonly label: "Secondary Action Label"; }; readonly onPress: { readonly type: "action"; readonly category: "Events"; readonly label: "Press action"; }; readonly onPrimaryAction: { readonly type: "action"; readonly category: "Events"; readonly label: "Primary action"; }; readonly onSecondaryAction: { readonly type: "action"; readonly category: "Events"; readonly label: "Secondary action"; }; }; }; //# sourceMappingURL=productCardMeta.d.ts.map