import * as s from 'jsonv-ts'; declare module "jsonv-ts" { interface ISchemaOptions { tags?: string[]; links?: { name: string; link: string; }[]; } } declare const schema: s.ObjectSchema<{ readonly project_id: s.Schema; readonly analytics: s.Schema; readonly api: s.Schema; readonly auth: s.Schema; readonly db: s.Schema; readonly edge_runtime: s.Schema; readonly functions: s.Schema; readonly inbucket: s.Schema; readonly realtime: s.Schema; readonly storage: s.Schema; readonly studio: s.Schema; readonly experimental: s.Schema; }, s.Merge>; type Schema = s.Static; type DefaultSchema = s.StaticCoerced; export type { DefaultSchema as D, Schema as S };