import type { RuleModule } from '../interface'; /** * @public */ export declare const CHART_RULE_ID: readonly ["data-check", "data-field-qty", "no-redundant-field", "purpose-check", "series-qty-limit", "bar-series-qty", "bar-without-axis-min", "line-field-time-ordinal", "landscape-or-portrait", "diff-pie-sector", "nominal-enum-combinatorial", "limit-series", "aggregation-single-row", "all-can-be-table"]; /** * @public */ export declare type ChartRuleID = (typeof CHART_RULE_ID)[number]; /** * @public */ export declare const CHART_DESIGN_RULE_ID: readonly ["x-axis-line-fading"]; /** * @public */ export declare type ChartDesignRuleID = (typeof CHART_DESIGN_RULE_ID)[number]; export declare type RuleId = ChartRuleID | ChartDesignRuleID; export declare const rules: Partial>;