import * as z from "zod/v3"; export type GetAnswerRequest = { /** * The opaque ID of the Answer. */ id?: number | undefined; /** * Glean Document ID of the Answer. The Glean Document ID is supported for cases where the Answer ID isn't available. If both are available, using the Answer ID is preferred. */ docId?: string | undefined; }; /** @internal */ export type GetAnswerRequest$Outbound = { id?: number | undefined; docId?: string | undefined; }; /** @internal */ export declare const GetAnswerRequest$outboundSchema: z.ZodType; export declare function getAnswerRequestToJSON(getAnswerRequest: GetAnswerRequest): string; //# sourceMappingURL=getanswerrequest.d.ts.map