/** * Custom Label for Content Blocks * * Displays a meaningful label for each block in the admin UI * Centralized implementation that receives data as props * * Copyright (c) 2025 QwickApps.com. All rights reserved. */ import React from 'react'; interface BlockLabelProps { data?: { blockType?: string; blockName?: string; }; rowNumber?: number; } export declare const BlockRowLabel: React.FC; export {}; //# sourceMappingURL=BlockRowLabel.d.ts.map