import { Layer } from '../types'; /** * 判断包含关系 * @param {*} target * @param {*} contain */ declare const isCover: (target: Layer, contain: Layer) => boolean; export default isCover;