/** * Custom Label for Card Array Items * * Displays meaningful labels showing card title, icon, and link * Used in Card Grid blocks * * Copyright (c) 2025 QwickApps.com. All rights reserved. */ import React from 'react'; interface CardRowLabelProps { data?: { title?: string; description?: string; icon?: string; image?: any; link?: string; linkText?: string; }; rowNumber?: number; } export declare const CardRowLabel: React.FC; export {}; //# sourceMappingURL=CardRowLabel.d.ts.map