import type { RuntimeBootFollowUpOutcome } from "../types.js"; type BootFollowUpOutcomeDetails = { recordId?: string; message?: string; error_code?: string; result?: unknown; details?: unknown; }; declare function bootFollowUpSkipped(call: string, entity: string, details?: BootFollowUpOutcomeDetails): RuntimeBootFollowUpOutcome; declare function bootFollowUpSucceeded(call: string, entity: string, value?: unknown, recordId?: string): RuntimeBootFollowUpOutcome; declare function bootFollowUpFailed(call: string, entity: string, error?: unknown, recordId?: string): RuntimeBootFollowUpOutcome; export { bootFollowUpFailed, bootFollowUpSkipped, bootFollowUpSucceeded, }; export type { BootFollowUpOutcomeDetails, }; //# sourceMappingURL=outcomes.d.ts.map