/** * @file 异步加载css和script * @author hedongran * @email hdr01@126.com */ /** * load dependency by css tag */ export declare function requireCss(src: string): Promise; /** * load dependency by script tag */ export declare function requireScript(src: string): Promise;