import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateInstructionParams = { /** * Whether the instruction is active. Active instructions are applied to documents when they're created or when their file is updated. */ active: boolean; }; /** @internal */ export declare const UpdateInstructionParams$inboundSchema: z.ZodType; /** @internal */ export type UpdateInstructionParams$Outbound = { active: boolean; }; /** @internal */ export declare const UpdateInstructionParams$outboundSchema: z.ZodType; export declare function updateInstructionParamsToJSON(updateInstructionParams: UpdateInstructionParams): string; export declare function updateInstructionParamsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateinstructionparams.d.ts.map