import type { ControlInteractionRegistry } from './control-interaction.js'; import type { StagedControlReviewLabels } from './staged-control-review.js'; export interface Props { /** The control interaction registry tracking staged changes. */ registry: ControlInteractionRegistry; /** Identifier for the form being reviewed. */ formId: string; /** Form element containing the controls; enables auto-refresh on field changes. */ formElement?: HTMLFormElement | null; /** Shows the review summary and list of staged changes. */ summary?: boolean; /** Customized text labels for the review interface. */ labels?: Partial; } declare const StagedControlReview: import("svelte").Component; type StagedControlReview = ReturnType; export default StagedControlReview; //# sourceMappingURL=StagedControlReview.svelte.d.ts.map