export function barEditorSchema({ optionalDataColumnEnum, defaults, numberFormats, colorDropdownItems, sortingOptions, chartSizes, columnAmount }: { optionalDataColumnEnum: any; defaults: any; numberFormats: any; colorDropdownItems: any; sortingOptions: any; chartSizes: any; columnAmount: any; }): { defaultProps: any; properties: { basic: { xAxis: { title: string; properties: { numberFormat: { title: string; type: string; enum: any; }; }; }; yAxis: { title: string; properties: { y: { title: string; type: string; enum: any; }; unit: { title: string; type: string; }; sort: { title: string; type: string; enum: any; }; }; }; color: { title: string; properties: { color: { title: string; type: string; enum: any; }; colorRange: { title: string; type: string; enum: any; }; }; }; layout: { title: string; properties: { column: { title: string; type: string; enum: any; }; columns: { title: string; type: string; enum: any; }; }; }; }; advanced: { xAxis: { title: string; properties: { xTicks: { title: string; type: string; contains: { type: string; }; }; showBarValues: { title: string; type: string; }; inlineValue: { title: string; type: string; }; }; }; yAxis: { title: string; properties: { yTicks: { title: string; type: string; contains: { type: string; }; }; domain: { title: string; type: string; contains: { type: string; }; }; }; }; layout: { title: string; properties: { size: { title: string; type: string; enum: any; }; height: { title: string; type: string; }; minInnerWidth: { title: string; type: string; }; }; }; }; }; }; export function lollipopEditorSchema({ dataColumnEnum, optionalDataColumnEnum, defaults, numberFormats, colorDropdownItems, sortingOptions, chartSizes, columnAmount }: { dataColumnEnum: any; optionalDataColumnEnum: any; defaults: any; numberFormats: any; colorDropdownItems: any; sortingOptions: any; chartSizes: any; columnAmount: any; }): { defaultProps: any; properties: { basic: { xAxis: { title: string; properties: { numberFormat: { title: string; type: string; enum: any; }; }; }; yAxis: { title: string; properties: { y: { title: string; type: string; enum: any; }; unit: { title: string; type: string; }; sort: { title: string; type: string; enum: any; }; }; }; color: { title: string; properties: { color: { title: string; type: string; enum: any; }; colorRange: { title: string; type: string; enum: any; }; }; }; layout: { title: string; properties: { column: { title: string; type: string; enum: any; }; columns: { title: string; type: string; enum: any; }; }; }; }; advanced: { xAxis: { title: string; properties: { xTicks: { title: string; type: string; contains: { type: string; }; }; showBarValues: { title: string; type: string; }; }; }; yAxis: { title: string; properties: { domain: { title: string; type: string; contains: { type: string; }; }; }; }; layout: { title: string; properties: { size: { title: string; type: string; enum: any; }; height: { title: string; type: string; }; minInnerWidth: { title: string; type: string; }; }; }; more: { title: string; properties: { band: { title: string; type: string; }; bandLegend: { title: string; type: string; }; }; }; }; }; };