/** * Custom Label for Navigation Items * * Displays meaningful labels showing item label and route * Centralized implementation that receives data as props * * Copyright (c) 2025 QwickApps.com. All rights reserved. */ import React from 'react'; interface NavigationItemLabelProps { data?: { label?: string; route?: string; icon?: string; children?: any[]; }; rowNumber?: number; } export declare const NavigationItemRowLabel: React.FC; export {}; //# sourceMappingURL=NavigationItemRowLabel.d.ts.map