import { type RemoteObjectState, SourceRepo } from './source-repo.js'; export type WorkflowCodeBuildResult = { compiled: number; warnings: string[]; }; export declare function buildWorkflowCode(repo: SourceRepo, options?: { skipUnchangedBaselines?: Record; targetSlug?: string; write?: boolean; }): Promise;