import { Layer } from '../types';
/**
 * 判断同层元素是否都在同一行
 *
 * @param {Array} data 同层元素数组
 */
export declare const isLine: (data: Layer[]) => boolean;
