import * as React from 'react'; type RootProps = React.ComponentPropsWithoutRef<"code"> & React.ComponentPropsWithoutRef<"span">; type CodeInlineProps = Readonly; /** * If you are sending emails for users that have the Orange.fr email client, * beware that this component will only work when you have a head containing meta tags. */ declare const CodeInline: React.ForwardRefExoticComponent & React.RefAttributes>; export { CodeInline, CodeInlineProps };