import React from 'react';
import type { RendererContext } from '../types';
import type { Mark as PMMark } from '@atlaskit/editor-prosemirror/model';
import type { ExtensionHandlers } from '@atlaskit/editor-common/extensions';
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
interface Props {
    extensionHandlers?: ExtensionHandlers;
    extensionKey: string;
    extensionType: string;
    localId?: string;
    marks?: PMMark[];
    parameters?: any;
    providers: ProviderFactory;
    rendererContext: RendererContext;
    text?: string;
}
declare const InlineExtension: (props: Props) => React.JSX.Element;
export default InlineExtension;
