import type { Plugin as MorPlugin, Runner } from '@morjs/utils';
export * from './constants';
export * from './runtimeConfig';
export { templateProcessor } from './templateProcessor';
declare class AlipayCompilerPlugin implements MorPlugin {
    name: string;
    apply(runner: Runner): void;
}
export declare const Plugin: typeof AlipayCompilerPlugin;
