import * as gulp from 'gulp'; import * as undertaker from 'undertaker'; declare type GulpInst = typeof gulp & typeof undertaker; export declare function loadGulp(): Promise; export declare function tasks(gulpInst?: GulpInst): Promise; export declare function hasTask(name: string): Promise; export declare function runTask(name: string): Promise; export {};