type DirectoryIdentity = { readonly device: number; readonly inode: number; readonly path: string; }; export type GoWorkflowBoundary = { readonly persona: DirectoryIdentity; readonly workflow: DirectoryIdentity; }; export declare function captureGoWorkflowBoundary(projectDir: string): GoWorkflowBoundary; export declare function assertGoWorkflowBoundary(boundary: GoWorkflowBoundary): void; export {};