/** 配置Provider */
export declare const OPTIONS_PROVIDER: unique symbol;
/** 方法类型 */
export declare const enum FunctionType {
    /** 同步 */
    Sync = "sync",
    /** 异步 */
    Async = "async"
}
