import * as t from 'io-ts'; export interface Workspace { readonly location: string; readonly workspaceDependencies: string[]; readonly mismatchedWorkspaceDependencies: string[]; } export declare type Workspaces = Record; export declare const codecWorkspace: t.Type; export declare const codecWorkspaces: t.Type; export declare const decode: (j: unknown) => Promise; export declare const parse: (input: string) => Promise; export declare const info: (cwd: string) => Promise; //# sourceMappingURL=YarnWorkspaces.d.ts.map