import type { EntityId } from '../../../libs/cargo-hold-entity'; import type { ContentDomainState, ContentInstanceState } from '../../../libs/content-domain'; import type { HasLens } from '../../../libs/util-domain-state'; export interface UseContentInstanceOptions { instanceId?: EntityId; } export declare const makeUseContentInstance: (options: HasLens) => ({ instanceId }: UseContentInstanceOptions) => ContentInstanceState | undefined;