import * as React from 'react'; import type { ProductType } from '../types'; type Props = { /** Primary text: Generally the product or capability name */ label: string; /** Secondary, complementary label to describe what instance of the product/capability */ secondaryLabel?: string; /** Used to indicate the current application the user is in */ active?: boolean; /** Called when the user selects the item */ onActivate?: () => void; /** A product short code which ultimately maps to an icon */ app: ProductType; /** @internal Used to manage the roving tab index */ tabIndex?: number; /** URL of the application. Used to enable browser shortcuts for opening in a new tab, etc, by rendering as an anchor element. */ url?: string; }; /** * Implements the [Design System specs](https://design.planview.com/components/product-switcher/product-switcher-list-item) * */ declare const ProductSwitcherListItem: ({ app, label, secondaryLabel, active, onActivate, tabIndex, url, }: Props) => React.ReactElement; export { ProductSwitcherListItem }; export default ProductSwitcherListItem; //# sourceMappingURL=ListItem.d.ts.map