///
import Compiler from './compiler';
/**
* 编译模版
* @param id_or_url 存放模板内容的 url 或 DOM id
* @param options 编译选项
*/
declare const compile: {
(id_or_url: string, data: OType, options?: ArtDefaults): Promise;
Compiler: typeof Compiler;
};
export default compile;