/** * `_.create`内部函数。 * * @example * _baseCreate({ ... }); * => { ... }.__proto__ === { ... } * * @param prototype 给定原型对象 */ export declare function _baseCreate(prototype: unknown): any;