import { z } from "zod"; import type * as C from "./config"; export declare const safetyOptionsSchema: z.ZodType; export declare const optimizationOptionsSchema: z.ZodType; /** * Per-project configuration options * * Read more: https://docs.tact-lang.org/book/config#projects */ export declare const optionsSchema: z.ZodType; export declare const modeSchema: z.ZodType; /** * Per-project configuration options * * Read more: https://docs.tact-lang.org/book/config#projects */ export declare const projectSchema: z.ZodType; /** * Compiler configuration schema * * Read more: https://docs.tact-lang.org/book/config */ export declare const configSchema: z.ZodType;