import { Sketch, Page, Artboard, Group } from 'sketch-constructor'; export default class SketchEngine { private sketch; page: Page; pages: Page[]; artboard: Artboard; artboards: Artboard[]; groups: Group[]; group: Group[]; constructor(sketch: Sketch); getPage: (name: string) => this; getPages(names?: string[]): this; getArtboard(name: string): this; getArtboards(names?: string[]): this; getGroups(names: string[]): this; getGroup(name: string): this; getLayer(name: string): string; }