import { MdxComponent } from '../interfaces'; interface LinkProps { className?: string | null; [otherProp: string]: unknown; } /** * 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 declare const Link: MdxComponent; export {};