import * as z from "zod/v3"; export type UpdateContextRequestDto = { /** * Custom data to associate with this context. Replaces existing data. */ data: { [k: string]: any; }; }; /** @internal */ export type UpdateContextRequestDto$Outbound = { data: { [k: string]: any; }; }; /** @internal */ export declare const UpdateContextRequestDto$outboundSchema: z.ZodType; export declare function updateContextRequestDtoToJSON(updateContextRequestDto: UpdateContextRequestDto): string; //# sourceMappingURL=updatecontextrequestdto.d.ts.map