import z from 'zod/v4'; export type CommonMessage = { messageType: string; }; export declare const SNS_MESSAGE_BODY_SCHEMA: z.ZodObject<{ Type: z.ZodString; MessageId: z.ZodString; TopicArn: z.ZodString; Message: z.ZodString; MessageAttributes: z.ZodOptional>>; Timestamp: z.ZodString; SignatureVersion: z.ZodString; Signature: z.ZodString; SigningCertURL: z.ZodString; UnsubscribeURL: z.ZodString; }, z.core.$strip>; export type SNS_MESSAGE_BODY_TYPE = z.output;