import { TSESTree } from "@typescript-eslint/utils";
import { RuleContext } from "@typescript-eslint/utils/dist/ts-eslint";
export declare const rules: {
    "disallow-array-for-object-type": {
        meta: {
            type: string;
            docs: {
                description: string;
                recommended: boolean;
            };
            messages: {
                disallowArrayForObjectType: string;
            };
            schema: never[];
        };
        create(context: RuleContext<"disallowArrayForObjectType", []>): {
            TSArrayType(node: TSESTree.TSArrayType): void;
        };
    };
};
