import type { AssemblerHookHandler } from '@adonisjs/core/types/app';
/**
 * This is an Assembler hook that should be executed when the application is
 * builded using the `node ace build` command.
 *
 * The hook is responsible for launching a Vite multi-build process.
 */
export default function viteBuildHook({ logger }: Parameters<AssemblerHookHandler>[0]): Promise<void>;
