import type { Snippet } from 'svelte'; import type { ContentEditorReference } from '../content-editor-form'; export interface Props { referenceIds?: string[]; references?: ContentEditorReference[]; onReferenceIdsChange?: (referenceIds: string[]) => void; /** * Optional snippet rendered inside the panel beneath the references list * and the "add reference by ID" input. Host applications use this to inject * a richer picker (browsing a tenant asset pool, searching an external * archive, etc.) without forking the component. The snippet is responsible * for calling `onReferenceIdsChange` (or otherwise mutating the parent * state) when the user selects an entry. */ children?: Snippet; } declare const ContentReferencesPanel: import("svelte").Component; type ContentReferencesPanel = ReturnType; export default ContentReferencesPanel; //# sourceMappingURL=ContentReferencesPanel.svelte.d.ts.map