import type { ContentEditorAssistantContextChange } from '../../content-editor-assistant'; import type { ContentData, FactData } from '../../mock-smrt-client'; export type GovernedContentEditorSaveData = ContentData & { factIds: string[]; facts: FactData[]; }; export interface Props { apiBaseUrl?: string; content?: ContentData; contentId?: string; defaultRelationship?: string; reviewProfileKey?: string; customReviewLabel?: string; customReviewInstructions?: string; customReviewPolicyKey?: string; enforcePublishReadiness?: boolean; saveDisabled?: boolean; saveNotice?: string | null; agentChatEnabled?: boolean; agentChatNotice?: string | null; hideActions?: boolean; hideChat?: boolean; showFactCatalog?: boolean; showGovernancePanel?: boolean; onAssistantContextChange?: ContentEditorAssistantContextChange; onSave: (data: GovernedContentEditorSaveData) => void; onCancel: () => void; } declare const GovernedContentEditor: import("svelte").Component void; triggerReview: (actionKind: string) => void; }, "">; type GovernedContentEditor = ReturnType; export default GovernedContentEditor; //# sourceMappingURL=GovernedContentEditor.svelte.d.ts.map