export declare const tasks: import("@plugjs/plug").Build<{
    overwrite: string;
    /** Copy all resources from the `resources/` directory into the target */
    resources(): Promise<void>;
    /** Setup dependencies and build script into target `package.json` */
    packages(): Promise<void>;
    /** Bootstrap the project */
    bootstrap(): Promise<void>;
}>;
