import { Types } from './types.js'; declare const UNKNOWN_RULE: { readonly key: ".+"; readonly data: { readonly type: Types.UNKNOWN; }; }; declare const config: { rules: ({ key: string; data: { type: Types; args: number; precedence: number; }; } | { key: string; data: { type: Types; args?: undefined; precedence?: undefined; }; })[]; }; export { UNKNOWN_RULE, config };