import type { TSESTree } from "@typescript-eslint/utils"; import type { RuleContext } from "@typescript-eslint/utils/ts-eslint"; import type { Options } from "./_rule"; import { MessageIds } from "./_rule"; import type { DeclarationScope } from "./util.extract-declaration-scopes"; /** * Verifies all groups in the provided declarationScope and raises errors for * all groups that are not in the expected order. */ export declare function reportGroupOrderViolations(context: RuleContext, node: TSESTree.Node, scope: DeclarationScope): void; //# sourceMappingURL=rule.group-order-violation.d.ts.map