import { Hono } from 'hono'; import { IPicGo } from '../../types'; /** * Route overriding helper. * * Logic: * 1. Business routes (GET/POST/...): last registration wins (override). * 2. Middlewares (ALL): preserve all in order (append). */ export declare const rebuildApp: >(draftApp: T, ctx: IPicGo) => T;