import { Layer } from './types';
/**
 * 相对定位
 *
 * @param {*} data
 * @param {*} parent
 * @returns
 */
export declare const absoluteBlock: (data: Layer[], parent: Layer) => Layer[];
export declare const isAbsoluteBlock: (data: Layer[], absoluteMatchNames: string[]) => boolean;
