import { PLBlueprint, PLBlueprintConfiguration, PLExecutionContext } from '@supernova-studio/pulsar-language'; import { PLBlueprintLoader } from '@supernova-studio/pulsar-language'; import { PCExporter } from '../../model/exporters/Exporter'; export declare class PCBlueprintLoader extends PLBlueprintLoader { exporter: PCExporter; constructor(exporter: PCExporter); loadBlueprint(blueprintId: string, executionContext: PLExecutionContext, configuration: PLBlueprintConfiguration): PLBlueprint; loadSourceForSourceId(sourceId: string, executionContext: PLExecutionContext, configuration: PLBlueprintConfiguration): PLBlueprint; }