import * as z from "zod/v3"; import * as components from "../components/index.js"; export type DeleteanswerRequest = { /** * The client's preferred locale in rfc5646 format (e.g. `en`, `ja`, `pt-BR`). If omitted, the `Accept-Language` will be used. If not present or not supported, defaults to the closest match or `en`. */ locale?: string | undefined; /** * DeleteAnswer request */ deleteAnswerRequest: components.DeleteAnswerRequest; }; /** @internal */ export type DeleteanswerRequest$Outbound = { locale?: string | undefined; DeleteAnswerRequest: components.DeleteAnswerRequest$Outbound; }; /** @internal */ export declare const DeleteanswerRequest$outboundSchema: z.ZodType; export declare function deleteanswerRequestToJSON(deleteanswerRequest: DeleteanswerRequest): string; //# sourceMappingURL=deleteanswer.d.ts.map