import * as z from "zod/v3"; export type DeleteAnswerRequest = { /** * The opaque ID of the Answer. */ id: number; /** * 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 DeleteAnswerRequest$Outbound = { id: number; docId?: string | undefined; }; /** @internal */ export declare const DeleteAnswerRequest$outboundSchema: z.ZodType; export declare function deleteAnswerRequestToJSON(deleteAnswerRequest: DeleteAnswerRequest): string; //# sourceMappingURL=deleteanswerrequest.d.ts.map