import { EditorConfig } from "@layerhub-io/types"; export declare const PROPERTIES_TO_INCLUDE: string[]; export declare const defaultEditorConfig: EditorConfig; export declare const defaultFrameOptions: { width: number; height: number; id: string; name: string; fill: string; hoverCursor: string; }; export declare enum LayerType { STATIC_VECTOR = "StaticVector", STATIC_GROUP = "StaticGroup", STATIC_PATH = "StaticPath", STATIC_IMAGE = "StaticImage", STATIC_VIDEO = "StaticVideo", STATIC_AUDIO = "StaticAudio", STATIC_TEXT = "StaticText", ACTIVE_SELECTION = "activeSelection", BACKGROUND = "Background", BACKGROUND_IMAGE = "BackgroundImage", FRAME = "Frame", GROUP = "Group" } export declare const defaultBackgroundOptions: { width: number; height: number; fill: string; id: string; name: string; }; export declare const commonParams: { backgroundColor: string; fillRule: string; globalCompositeOperation: string; strokeDashArray: null; strokeDashOffset: number; strokeLineCap: string; strokeLineJoin: string; strokeMiterLimit: number; strokeUniform: boolean; }; export declare const getCopyStyleCursor: () => string; export declare const copyStyleProps: { StaticText: string[]; StaticImage: string[]; StaticPath: string[]; };