import { EditorElement } from '@wix/component-protocol/schema'; export declare const typeValues: { solid: string; dash: string; dot: string; doubleLine: string; zigzag: string; }; export declare const DisplayNames: { root: { elementDisplayName: string; customActions: { presets: string; }; displayGroups: { appearance: { displayName: string; }; }; cssCustomProperties: { type: string; lineStart: string; lineEnd: string; lineSize: string; doubleLineSize: string; spaceBetween: string; dashSize: string; }; presets: { horizontal: string; vertical: string; }; }; type: { options: { solid: string; dash: string; dot: string; doubleLine: string; zigzag: string; }; }; edge: { options: { none: string; square: string; triangle: string; circle: string; arrow: string; }; }; }; export declare const presets: { readonly horizontal: "horizontal"; readonly vertical: "vertical"; }; export declare const lineDefaults: { readonly lineColor: "black"; readonly lineSize: "10px"; readonly doubleLineSize: "10px"; readonly spaceBetween: "10px"; readonly dashSize: "20px"; readonly type: "Solid"; readonly lineStart: "None"; readonly lineEnd: "None"; }; export declare const lineCssCustomPropertiesDefaults: { type: { defaultValue: "Solid"; }; lineStart: { defaultValue: "None"; }; lineEnd: { defaultValue: "None"; }; lineColor: { defaultValue: "black"; }; lineSize: { defaultValue: "10px"; }; doubleLineSize: { defaultValue: "10px"; }; spaceBetween: { defaultValue: "10px"; }; dashSize: { defaultValue: "20px"; }; }; export type LinePresetKey = (typeof presets)[keyof typeof presets]; export declare const overridesByType: Record>; export declare const FORMAT_PANEL_BI_PARAMS: { component_type: string; builder_type: string; panel_name: string; control_type: string; control_id: string; panel_builder: string; };