interface WorkflowAclAgent { name: string; acl: Record; } interface SeedWorkflowAclsOptions { relayfileUrl: string; adminToken: string; workspace: string; agents: WorkflowAclAgent[]; } export declare function createWorkspaceIfNeeded(baseUrl: string, token: string, workspaceId: string): Promise; export declare function seedAclRules(baseUrl: string, token: string, workspaceId: string, aclRules: Record): Promise; export declare function seedWorkspace(baseUrl: string, token: string, workspaceId: string, projectDir: string, excludeDirs: string[]): Promise; export declare function seedWorkflowAcls({ relayfileUrl, adminToken, workspace, agents, }: SeedWorkflowAclsOptions): Promise; export declare function seedWorkspaceTar(baseUrl: string, token: string, workspaceId: string, projectDir: string, excludeDirs: string[]): Promise; export {};