/** * STYLES from Widgetic Design System * Note: props-editor.css global rules (body, *) moved to app.css (standalone only). * Component-scoped rules are in the style block at the end of this file. */ import "@widgetic/design-system/styles"; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const PropsEditor: $$__sveltets_2_IsomorphicComponent<{ /** * EXTERNAL COMPONENT PROPS */ class?: string; style?: string; width?: string; height?: string; designSchema?: any; contentSchema?: any | undefined; itemTemplate?: any; designTabTitle?: string; contentTabTitle?: string; defaultTab?: "design" | "content"; defaultOpen?: boolean; showDragHandle?: boolean; enableDrag?: boolean; initialDesignValues?: Record; initialContentValues?: Record; updateDesignValue?: (propertyId: string, value: any) => void; setPosition?: (left: number, top: number) => void; getPosition?: () => { left: number; top: number; }; }, { updated: CustomEvent; propertyChange: CustomEvent; goToItem: CustomEvent; contentItemsChanged: CustomEvent; move: CustomEvent; moveEnd: CustomEvent; } & { [evt: string]: CustomEvent; }, {}, { updateDesignValue: (propertyId: string, value: any) => void; setPosition: (left: number, top: number) => void; getPosition: () => { left: number; top: number; }; }, string>; type PropsEditor = InstanceType; export default PropsEditor;