import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DataType } from "./datatype.js"; export type PushOperationRef = { /** * Unique identifier for a push operation. */ id?: string | undefined; /** * Available data types */ dataType?: DataType | undefined; }; /** @internal */ export declare const PushOperationRef$inboundSchema: z.ZodType; export declare function pushOperationRefFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pushoperationref.d.ts.map