/** * For MDX files, steer away from using JSX components * for link in favor of standard markdown syntax. * * ``` * > [Carbon Platform Storybook](https://platform.carbondesignsystem.com) * ``` */ export function Link({ className, ...rest }: { [x: string]: any; className: any; }): React.FunctionComponentElement>>; export namespace Link { namespace propTypes { let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';