import * as React from 'react'; import type { ProductSwitcherOrganization } from '../types'; type Props = { /** Must have one ore more ProductSwitcherListItem components as children */ children: React.ReactNode; /** Used by the container to enable keyboard navigation of the list */ onKeyDown: React.KeyboardEventHandler; /** Will render organization branding when provided */ organization?: ProductSwitcherOrganization; /** Called when the list closes */ onClose: () => void; }; /** * Implements the [Design System specs](https://design.planview.com/components/product-switcher/product-switcher-panel/anatomy) * */ declare const ProductSwitcherList: React.ForwardRefExoticComponent>; export { ProductSwitcherList }; export default ProductSwitcherList; //# sourceMappingURL=List.d.ts.map