export declare function loadBuilderTools(tags?: string[]): Promise<{ toolIds: string[]; inventory: string; strategy: string; }>; /** * Load a specific section from the activity-types reference file. * Returns the markdown for the requested activity type (await, signal, interrupt). * Returns empty string if the section or file is not found. */ export declare function loadReferenceSection(section: 'await' | 'signal' | 'interrupt'): Promise;