/// import { CreateGulConfigOptions } from './createGulpConfig'; export interface CreatePDSGulConfigOptions extends CreateGulConfigOptions { } export default function createPDSGulpConfig(options: CreatePDSGulConfigOptions): { build: () => import("undertaker").TaskFunction; dev: () => { task: import("undertaker").TaskFunction; close(): void; }; npm: () => import("undertaker").TaskFunction; npmDev: (onSuccess?: string | undefined) => { task: import("undertaker").TaskFunction; close(): void; }; resolveTypeScript: () => string; excludeDistDir: string; sourceFiles: Record<"ts" | "less" | "js" | "axml" | "json" | "asset" | "copy" | "dts", string[]>; sourceType: { typeMap: {}; check(path: string, sourceFiles: Record<"ts" | "less" | "js" | "axml" | "json" | "asset" | "copy" | "dts", string[]>): any; }; };