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 the zfb public target. */ export declare function createZfbMiniPlugins(vptOptions: VptOptions): PluginOption[]; /** Binds the shared Mini Program core to Alipay runtime and output conventions. */ export declare function createZfbMiniContract(vptOptions: VptOptions): MiniContract;