import { Rect, Size } from '../../structs'; import { Layer } from "./"; export declare class Placeholder { name: string; layers: Array; activeLayer: Layer | null; size: Size; rect: Rect; hasGraphics: boolean; isVisible: boolean; constructor(name: string); }