import type { WorkflowJSON, OutputSchemaLookup, PinDataGenerationInstructions } from '@n8n/workflow-sdk'; export { findOutputParserTargets, repairStructuredOutput } from '@n8n/workflow-sdk'; type PinData = Record>>; export interface GeneratePinDataOptions { workflow: WorkflowJSON; nodeNames: string[]; instructions?: PinDataGenerationInstructions; outputSchemaLookup?: OutputSchemaLookup; } export declare function generatePinData(options: GeneratePinDataOptions): Promise;