import { default as React } from 'react'; type MdashProps = { /** Optionally add a class */ customClass?: string; /** Optional prop to add a test id to the Mdash for QA testing */ qaTestId?: string; }; export default function Mdash({ customClass, qaTestId, }: MdashProps): React.JSX.Element; export {};