import { Fragment, type Schema } from '@atlaskit/editor-prosemirror/model'; import type { DispatchAnalyticsEvent } from '../analytics'; import type { ProviderFactory } from '../provider-factory'; import type { ReplaceRawValue, Transformer } from '../types'; export declare function processRawFragmentValue(schema: Schema, value?: ReplaceRawValue[], providerFactory?: ProviderFactory, sanitizePrivateContent?: boolean, contentTransformer?: Transformer, dispatchAnalyticsEvent?: DispatchAnalyticsEvent): Fragment | undefined;