import { z } from "zod"; export declare const Question: z.ZodObject<{ embedding: z.ZodArray; embedding_model: z.ZodString; embedding_model_version: z.ZodString; text: z.ZodString; }, z.core.$strip>; export type Question = z.infer; export declare const VerifiedAnswer: z.ZodObject<{ _id: z.ZodString; question: z.ZodObject<{ embedding: z.ZodArray; embedding_model: z.ZodString; embedding_model_version: z.ZodString; text: z.ZodString; }, z.core.$strip>; answer: z.ZodString; author_email: z.ZodString; hidden: z.ZodOptional; references: z.ZodArray; sourceType: z.ZodOptional; tags: z.ZodOptional>; }, z.core.$loose>>; }, z.core.$strip>>; created: z.ZodDate; updated: z.ZodOptional; }, z.core.$strip>; export type VerifiedAnswer = z.infer;