type Task = string | string[] | Record<string, string | string[]>;
declare class Pkg {
    path: string;
    tasks: Record<string, Task>;
    constructor();
}
export declare const pkg: Pkg;
export {};
