import type { ExtensionContext } from "@earendil-works/pi-coding-agent"; import { type ParentContextCapture } from "#src/parent-context"; /** * Extract parent conversation messages from the current extension context. * * This is the pi-specific half of the parent-context split (design D7): it * digs `SessionEntry` objects out of pi's `ExtensionContext` and converts * them into the host-neutral `ParentContextMessage[]` shape that core's * `formatParentContextText` operates on. */ export declare function captureParentContext(ctx: Pick | undefined): ParentContextCapture | { warning: string; }; //# sourceMappingURL=parent-context.d.ts.map