import * as React from 'react'; import { Children } from 'react'; export interface NavigationOptionListProps { children: React.ReactNode; } /** * @deprecated Use `` and `` instead. * @deprecatedSince 46.104.0 * @see [List source](../list/List.tsx) * @see [ListItem source](../listItem/ListItem.tsx) * @see [Storybook](https://storybook.wise.design/?path=/docs/content-listitem--docs) * @see [Design docs](https://wise.design/components/list-item) * @see [Release notes](https://transferwise.atlassian.net/wiki/spaces/DS/pages/3647251055/List+Item+release+notes) */ const NavigationOptionList = ({ children }: NavigationOptionListProps) => { return ( ); }; export default NavigationOptionList;