import type { ApprovalRequestWithId } from '../types.js'; export declare function useApproval(): { pendingApprovals: ApprovalRequestWithId[]; approve: (requestId: string) => void; reject: (requestId: string, reason?: string) => void; modify: (requestId: string, modifiedArgs: Record, message?: string) => void; }; //# sourceMappingURL=use-approval.d.ts.map