import type { EntityId } from '../../../../libs/cargo-hold-entity'; import type { ContentInstance } from '../../../../libs/content-domain'; import type { FC } from 'react'; export interface ContentProviderProps { instanceId?: string; contentEntryId?: string; } export interface ContentModelZoneProvidedDql { selectedContent: ContentInstance | undefined; id: EntityId | undefined; } export declare const ContentProvider: FC;