import type { TSESLint } from '@typescript-eslint/utils'; declare const ZOD_OBJECT_METHODS: readonly ["object", "looseObject", "strictObject"]; type ZodObjectMethod = (typeof ZOD_OBJECT_METHODS)[number]; interface Options { allow: Array; } type MessageIds = 'consistentMethod' | 'useMethod'; export declare const consistentObjectSchemaType: TSESLint.RuleModule & { name: string; }; export {};