/** * SQLite Configuration Schema for SDK * * Zod schema for SQLite storage options used in FrontMCP config. */ import { z } from '@frontmcp/lazy-zod'; import type { SqliteOptionsInterface } from './interfaces'; /** * SQLite storage configuration schema. */ export declare const sqliteOptionsSchema: import("@frontmcp/lazy-zod").ZodObject<{ path: import("@frontmcp/lazy-zod").ZodOptional; encryption: import("@frontmcp/lazy-zod").ZodOptional>; ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault>; walMode: import("@frontmcp/lazy-zod").ZodDefault>; }, import("zod/v4/core").$strip>; /** * SQLite storage input type (before Zod defaults). * Uses explicit interface for better IDE autocomplete. */ export type SqliteOptionsInput = SqliteOptionsInterface; /** * SQLite storage output type (after Zod defaults). */ export type SqliteOptions = z.infer; //# sourceMappingURL=schema.d.ts.map