import type { Draft } from "../../lib/draft-state.js"; /** * Operator-only finalization that isn't about payment: an internal note and the * document-generation settings (proforma vs invoice+contract, notify). Split * out of the Payment block since these don't affect the amount due. */ export declare function DocumentsStep({ draft, setDraft, }: { draft: Draft; setDraft: (next: Draft) => void; }): React.ReactElement;