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