import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RefreshCollectionItemsMetaRequest = { /** * Address of the collection */ collection: string; }; /** @internal */ export declare const RefreshCollectionItemsMetaRequest$inboundSchema: z.ZodType; /** @internal */ export type RefreshCollectionItemsMetaRequest$Outbound = { collection: string; }; /** @internal */ export declare const RefreshCollectionItemsMetaRequest$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 RefreshCollectionItemsMetaRequest$ { /** @deprecated use `RefreshCollectionItemsMetaRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RefreshCollectionItemsMetaRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RefreshCollectionItemsMetaRequest$Outbound` instead. */ type Outbound = RefreshCollectionItemsMetaRequest$Outbound; } export declare function refreshCollectionItemsMetaRequestToJSON(refreshCollectionItemsMetaRequest: RefreshCollectionItemsMetaRequest): string; export declare function refreshCollectionItemsMetaRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=refreshcollectionitemsmeta.d.ts.map