/** * Custom Label for Navigation Sub-Items * * Displays meaningful labels for nested navigation items * Centralized implementation that receives data as props * * Copyright (c) 2025 QwickApps.com. All rights reserved. */ import React from 'react'; interface NavigationSubItemLabelProps { data?: { label?: string; route?: string; }; rowNumber?: number; } export declare const NavigationSubItemRowLabel: React.FC; export {}; //# sourceMappingURL=NavigationSubItemRowLabel.d.ts.map