import { type ContentGovernanceStateData, type FactAuditStateData, type FactData } from '../../mock-smrt-client'; export type ContentGovernancePanelSection = 'factAudit' | 'facts' | 'reviews' | 'transparency' | 'corrections' | 'versions'; export interface Props { apiBaseUrl?: string; contentId?: string; draftType?: string | null; draftVariant?: string | null; selectedFactIds?: string[]; selectedFacts?: FactData[]; defaultRelationship?: string; reviewProfileKey?: string; customReviewLabel?: string; customReviewInstructions?: string; customReviewPolicyKey?: string; showFactCatalog?: boolean; onFactsChange?: (factIds: string[], facts: FactData[]) => void; onGovernanceStateChange?: (state: ContentGovernanceStateData | null) => void; onFactAuditChange?: (state: FactAuditStateData | null) => void; hiddenSections?: ContentGovernancePanelSection[]; } declare const ContentGovernancePanel: import("svelte").Component Promise; }, "">; type ContentGovernancePanel = ReturnType; export default ContentGovernancePanel; //# sourceMappingURL=ContentGovernancePanel.svelte.d.ts.map