import type { ParsedDesignResourceHandoffInput } from "./design-resource-handoff-input-types.js"; export interface DesignResourceHandoffBlockSpan { bodyStartOffset: number; bodyEndOffset: number; } export declare function containsDesignResourceHandoff(content: string): boolean; export declare function scanDesignResourceHandoffBlocks(content: string): DesignResourceHandoffBlockSpan[]; export declare function parseDesignResourceHandoffMarkdown(handoffPath: string, content: string): ParsedDesignResourceHandoffInput;