import type { PluginOption } from 'vite'; import type { VptOptions } from '../../../options.ts'; import type { MiniContract } from '../mini/mini-contract.ts'; /** Adapts the shared Mini Program pipeline to TikTok. */ export declare function createTtMiniPlugins(options: VptOptions): PluginOption[]; /** Binds TT's runtime, native templates, styles, and socket transport to the shared compiler. */ export declare function createTtMiniContract(options: VptOptions): MiniContract;