import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3DeviceRevokeResponse = { /** * Whether the device was successfully revoked. */ success: boolean; }; /** @internal */ export declare const V3DeviceRevokeResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DeviceRevokeResponse$Outbound = { success: boolean; }; /** @internal */ export declare const V3DeviceRevokeResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace V3DeviceRevokeResponse$ { /** @deprecated use `V3DeviceRevokeResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DeviceRevokeResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DeviceRevokeResponse$Outbound` instead. */ type Outbound = V3DeviceRevokeResponse$Outbound; } export declare function v3DeviceRevokeResponseToJSON(v3DeviceRevokeResponse: V3DeviceRevokeResponse): string; export declare function v3DeviceRevokeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3devicerevokeresponse.d.ts.map