import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The status enum for the performed action */ export declare const DeleteMessageResponseDtoStatus: { readonly Deleted: "deleted"; }; /** * The status enum for the performed action */ export type DeleteMessageResponseDtoStatus = ClosedEnum; export type DeleteMessageResponseDto = { /** * A boolean stating the success of the action */ acknowledged: boolean; /** * The status enum for the performed action */ status: DeleteMessageResponseDtoStatus; }; /** @internal */ export declare const DeleteMessageResponseDtoStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DeleteMessageResponseDto$inboundSchema: z.ZodType; export declare function deleteMessageResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletemessageresponsedto.d.ts.map