export declare const inputs: { readonly boolean: { readonly name: "boolean"; readonly type: "boolean"; readonly label: "Boolean"; }; readonly timeRange: { readonly name: "timeRange"; readonly type: "timeRange"; readonly label: "Time range"; }; readonly number: { readonly name: "number"; readonly type: "number"; readonly label: "Number"; }; readonly string: { readonly name: "string"; readonly type: "string"; readonly label: "String"; }; readonly title: { readonly name: "title"; readonly type: "string"; readonly label: "Title"; readonly category: "Component Header"; }; readonly description: { readonly name: "description"; readonly type: "string"; readonly label: "Description"; readonly category: "Component Header"; }; readonly tooltip: { readonly name: "tooltip"; readonly type: "string"; readonly label: "Tooltip"; readonly category: "Component Header"; }; readonly dataset: { readonly name: "dataset"; readonly type: "dataset"; readonly label: "Dataset"; readonly required: true; readonly category: "Component Data"; }; readonly maxLegendItems: { readonly name: "maxLegendItems"; readonly type: "number"; readonly label: "Max legend items"; readonly defaultValue: 10; readonly category: "Component Data"; }; readonly dimension: { readonly name: "dimension"; readonly type: "dimension"; readonly label: "Dimension"; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly groupBy: { readonly name: "groupBy"; readonly label: "Group by"; readonly type: "dimension"; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly dimensionSimple: { readonly name: "dimensionSimple"; readonly type: "dimension"; readonly label: "Dimension"; readonly config: { readonly dataset: "dataset"; readonly hideGranularity: true; }; readonly required: true; readonly category: "Component Data"; }; readonly dimensionTime: { readonly name: "dimensionTime"; readonly type: "dimension"; readonly label: "Dimension time"; readonly config: { readonly dataset: "dataset"; readonly supportedTypes: readonly ["time"]; readonly hideGranularity: true; }; readonly required: true; readonly category: "Component Data"; }; readonly dimensionWithDateBounds: { readonly name: "dimension"; readonly type: "dimension"; readonly label: "Dimension"; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly dimensionWithGranularitySelectField: { readonly name: "dimension"; readonly type: "dimension"; readonly label: "Dimension"; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly dimensions: { readonly name: "dimensions"; readonly type: "dimension"; readonly label: "Dimensions"; readonly config: { readonly dataset: "dataset"; }; readonly array: true; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly dimensionOrMeasure: { readonly name: "dimensionOrMeasure"; readonly type: "dimensionOrMeasure"; readonly label: "Dimension or measure"; readonly config: { readonly dataset: "dataset"; }; readonly category: "Component Data"; readonly inputs: any[]; }; readonly dimensionsAndMeasures: { readonly name: "dimensionsAndMeasures"; readonly type: "dimensionOrMeasure"; readonly label: "Dimensions and measures"; readonly array: true; readonly required: true; readonly config: { readonly dataset: "dataset"; }; readonly category: "Component Data"; readonly inputs: any[]; }; readonly measure: { readonly name: "measure"; readonly type: "measure"; readonly label: "Measure"; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly xMeasure: { readonly name: "xMeasure"; readonly label: "X-axis measure"; readonly type: "measure"; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly yMeasure: { readonly name: "yMeasure"; readonly label: "Y-axis measure"; readonly type: "measure"; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly measures: { readonly name: "measures"; readonly type: "measure"; readonly label: "Measures"; readonly array: true; readonly config: { readonly dataset: "dataset"; }; readonly required: true; readonly category: "Component Data"; readonly inputs: any[]; }; readonly measureOptions: { name: string; label: string; type: "measure"; array: true; config: { readonly dataset: "dataset"; }; required: true; category: "Component Data"; inputs: any[]; }; readonly dimensionOptions: { name: string; label: string; type: "dimension"; config: { readonly dataset: "dataset"; }; array: true; required: true; category: "Component Data"; inputs: any[]; }; readonly dimensionAndMeasureOptions: { name: string; label: string; type: "dimensionOrMeasure"; array: true; required: true; config: { readonly dataset: "dataset"; }; category: "Component Data"; inputs: any[]; }; readonly sortDimensionOrMeasure: { readonly name: "sortDimensionOrMeasure"; readonly type: "dimensionOrMeasure"; readonly label: "Sort dimension or measure"; readonly config: { readonly dataset: "dataset"; }; readonly category: "Component Data"; readonly inputs: undefined; }; readonly comparisonPeriod: { name: string; type: import("@embeddable.com/core").EmbeddableType; label: string; category: string; }; readonly maxResults: { readonly name: "maxResults"; readonly type: "number"; readonly label: "Max results"; readonly category: "Component Settings"; readonly defaultValue: 1000; }; readonly placeholder: { readonly name: "placeholder"; readonly type: "string"; readonly label: "Placeholder"; readonly category: "Component Settings"; }; readonly showLegend: { readonly name: "showLegend"; readonly type: "boolean"; readonly label: "Show legend"; readonly defaultValue: true; readonly category: "Component Settings"; }; readonly showTooltips: { readonly name: "showTooltips"; readonly type: "boolean"; readonly label: "Show tooltips"; readonly defaultValue: true; readonly category: "Component Settings"; }; readonly showValueLabels: { readonly name: "showValueLabels"; readonly type: "boolean"; readonly label: "Show value labels"; readonly defaultValue: true; readonly category: "Component Settings"; }; readonly showTotalLabels: { readonly name: "showTotalLabels"; readonly type: "boolean"; readonly label: "Show total labels"; readonly defaultValue: false; readonly category: "Component Settings"; }; readonly showLogarithmicScale: { readonly name: "showLogarithmicScale"; readonly type: "boolean"; readonly label: "Show logarithmic scale"; readonly defaultValue: false; readonly category: "Component Settings"; }; readonly displayPercentages: { readonly name: "displayPercentages"; readonly type: "boolean"; readonly label: "Display percentages"; readonly defaultValue: false; readonly category: "Component Settings"; }; readonly color: { readonly type: import("@embeddable.com/core").EmbeddableType; readonly name: "color"; readonly label: "Color"; readonly category: "Component Settings"; }; readonly fontSize: { readonly type: "number"; readonly name: "fontSize"; readonly label: "Font size"; readonly category: "Component Settings"; }; readonly clearable: { readonly type: "boolean"; readonly name: "clearable"; readonly label: "Can be cleared"; readonly defaultValue: true; readonly category: "Component Settings"; }; readonly displayNullAs: { readonly name: "displayNullAs"; readonly label: "Display null as"; readonly category: "Component Settings"; readonly type: "string"; }; readonly xAxisLabel: { readonly name: "xAxisLabel"; readonly type: "string"; readonly label: "X-axis Label"; readonly category: "Axes Settings"; }; readonly yAxisLabel: { readonly name: "yAxisLabel"; readonly type: "string"; readonly label: "Y-axis label"; readonly category: "Axes Settings"; }; readonly reverseXAxis: { readonly name: "reverseXAxis"; readonly type: "boolean"; readonly label: "Reverse x-axis"; readonly defaultValue: false; readonly category: "Axes Settings"; }; readonly reverseYAxis: { readonly name: "reverseYAxis"; readonly type: "boolean"; readonly label: "Reverse y-axis"; readonly defaultValue: false; readonly category: "Axes Settings"; }; readonly yAxisRangeMin: { readonly name: "yAxisRangeMin"; readonly type: "number"; readonly label: "Y-axis range min"; readonly category: "Axes Settings"; }; readonly yAxisRangeMax: { readonly name: "yAxisRangeMax"; readonly type: "number"; readonly label: "Y-axis range max"; readonly category: "Axes Settings"; }; readonly xAxisRangeMin: { readonly name: "xAxisRangeMin"; readonly type: "number"; readonly label: "X-axis range min"; readonly category: "Axes Settings"; }; readonly xAxisRangeMax: { readonly name: "xAxisRangeMax"; readonly type: "number"; readonly label: "X-axis range max"; readonly category: "Axes Settings"; }; readonly xAxisMaxItems: { readonly name: "xAxisMaxItems"; readonly type: "number"; readonly label: "Max x-axis items"; readonly category: "Axes Settings"; }; readonly yAxisMaxItems: { readonly name: "yAxisMaxItems"; readonly type: "number"; readonly label: "Max y-axis items"; readonly category: "Axes Settings"; }; readonly sortDirection: { readonly name: "sortDirection"; readonly type: import("@embeddable.com/core").EmbeddableType; readonly label: "Sort direction"; readonly category: "Component Settings"; }; readonly sortDirectionTopXAxis: { readonly name: "sortDirectionTopXAxis"; readonly label: "Sort by x-axis total"; readonly type: import("@embeddable.com/core").EmbeddableType; readonly category: "Component Settings"; }; readonly sortDirectionTopYAxis: { readonly name: "sortDirectionTopYAxis"; readonly label: "Sort by y-axis total"; readonly type: import("@embeddable.com/core").EmbeddableType; readonly category: "Component Settings"; }; readonly limitTopXAxis: { readonly name: "limitTopXAxis"; readonly type: "number"; readonly label: "Limit top x-axis"; readonly description: "Load only the top or bottom categories, based on group totals"; readonly category: "Component Settings"; }; readonly limitTopYAxis: { readonly name: "limitTopYAxis"; readonly type: "number"; readonly label: "Limit top y-axis"; readonly description: "Load only the top or bottom categories, based on group totals"; readonly category: "Component Settings"; }; readonly granularity: { readonly name: "granularity"; readonly type: "granularity"; readonly label: "Granularity"; }; readonly granularities: { readonly name: "granularities"; readonly type: "granularity"; readonly label: "Granularities"; readonly array: true; readonly defaultValue: readonly ["hour", "day", "week", "month", "quarter", "year"]; }; readonly markdown: { readonly name: "markdown"; readonly type: import("@embeddable.com/core").EmbeddableType; readonly label: "Markdown"; readonly description: "All markdown features are supported, including tables, images, links, etc. You can also access translations using {{translation_key|fallback value}}."; readonly category: "Component Settings"; }; readonly filters: { readonly type: "filters"; readonly name: "filters"; readonly label: "Filters"; readonly category: "Pre-configured variables"; readonly defaultValue: null; }; readonly menuOptions: { readonly name: "menuOptions"; readonly type: import("@embeddable.com/core").EmbeddableType; readonly label: "Menu options"; readonly array: true; readonly defaultValue: readonly ["csv", "xlsx", "png"]; readonly category: "Component Settings"; }; }; //# sourceMappingURL=component.inputs.constants.d.ts.map