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 MessageButton = { /** * Type of button for the action result */ type: ButtonTypeEnum; /** * Content of the button */ content: string; /** * Content of the result when the button is clicked */ resultContent?: string | undefined; }; /** @internal */ export declare const MessageButton$inboundSchema: z.ZodType; export declare function messageButtonFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=messagebutton.d.ts.map