import { Artboard, Group, Layer } from 'sketch-constructor'; export declare class LayerStyles { readonly groups: Group[]; readonly layers: Layer[]; constructor(item: Artboard | Group); /** * 获取页面信息 * @param path 页面路径 */ getLayer(path: string): import("sketch-constructor/models/Layer"); /** * 获取分组信息 * @param path 分组名称 */ getGroup(path: string): Group; }