import React from 'react'; import type { WrappedComponentProps } from 'react-intl-next'; import type { Mark } from '@atlaskit/editor-prosemirror/model'; import type { MarkProps } from '../types'; export declare const isCodeMark: (mark: Mark) => boolean; export declare function CodeWithIntl(props: MarkProps<{ codeBidiWarningTooltipEnabled: boolean; }> & WrappedComponentProps): React.JSX.Element; declare const _default: React.FC> & { WrappedComponent: React.ComponentType<{ codeBidiWarningTooltipEnabled: boolean; } & import("../types").MarkMeta & { children?: React.ReactNode | undefined; } & WrappedComponentProps>; }; export default _default;