import type { ViteBaseTask } from './types'; import type { TaskHandler } from '../index'; interface ViteBuildTask extends ViteBaseTask { type: 'build:js'; } declare const viteBuildTask: TaskHandler; export { viteBuildTask }; export type { ViteBuildTask };