import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ButtonTypeEnum } from "./buttontypeenum.js"; export type MessageActionResult = { /** * Payload of the action result */ payload?: { [k: string]: any; } | undefined; /** * Type of button for the action result */ type?: ButtonTypeEnum | undefined; }; /** @internal */ export declare const MessageActionResult$inboundSchema: z.ZodType; export declare function messageActionResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=messageactionresult.d.ts.map