import { type OnboardingCallAgenda } from "./onboardingCallContract.js"; export declare const ONBOARDING_CALL_PUBLIC_SECTIONS: readonly ["Kickoff meeting frame", "What We Know", "What We Still Need", "Agenda overview", "Part 1: Strategy", "1. Product", "2. ICP / Targeting", "3. Dream clients", "4. Offer Strategy", "5. Campaign Plan", "Part 2: Alignment", "6. Partnership", "7. Setup", "8. Reply Management", "9. Timeline and open items", "Decisions and next action"]; export declare const APPROVAL_READY_TARGET = "within 48 hours"; export declare const CONDITIONAL_LAUNCH_TARGET = "within 5\u20137 business days"; export declare const MANAGED_REGION_START = "sellable-onboarding-managed-start"; export declare const MANAGED_REGION_END = "sellable-onboarding-managed-end"; export interface RenderedOnboardingCall { markdown: string; handoffMarkdown: string; visibleRevision: string; } export declare function assertPublicValue(value: string, label: string): void; export declare function renderOnboardingCall(agenda: OnboardingCallAgenda): RenderedOnboardingCall;