import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { RedirectDto } from "./redirectdto.js"; export type InboxActionDto = { /** * Label of the action button */ label: string; /** * Whether the action has been completed */ isCompleted: boolean; /** * Redirect configuration for the action */ redirect?: RedirectDto | undefined; }; /** @internal */ export declare const InboxActionDto$inboundSchema: z.ZodType; export declare function inboxActionDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=inboxactiondto.d.ts.map