/** * Custom Label for Button Array Items * * Displays meaningful labels showing button text, variant, and link * Used in Hero actions, CTA buttons, and other button arrays * * Copyright (c) 2025 QwickApps.com. All rights reserved. */ import React from 'react'; interface ButtonRowLabelProps { data?: { label?: string; href?: string; variant?: string; color?: string; icon?: string; endIcon?: string; }; rowNumber?: number; } export declare const ButtonRowLabel: React.FC; export {}; //# sourceMappingURL=ButtonRowLabel.d.ts.map