/** * 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 BuildOptions { dir?: string; output?: string; types?: boolean; validate?: boolean; } /** * Build command - validates metadata and generates TypeScript types * Prepares the project for production deployment */ export declare function build(options: BuildOptions): Promise; export {};