import { Layer } from './types'; import { CodeType } from '../../sketch-dsl/src'; export declare const handlerUIComponent: (data: any) => Promise; export declare const picassoCode: (data: Layer[], size: number, platform: CodeType, lang: any) => any[] | { less: string; css: string; html: string; vueHtml: string; reactHtml: string; vueData: {}; } | { wxml: string; wxss: string; } | { jsx: string; }; export * from './web'; export * from './weapp'; export * from './reactnative'; export * from './web/handlerCycle';