/** * ObjectQL * Copyright (c) 2026-present ObjectStack Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ interface LintOptions { dir?: string; fix?: boolean; } /** * Lint command - validates metadata files for correctness and best practices */ export declare function lint(options: LintOptions): Promise; export {};