import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type MetaAttribute = { key: string; value?: string | undefined; type?: string | undefined; format?: string | undefined; }; /** @internal */ export declare const MetaAttribute$inboundSchema: z.ZodType; /** @internal */ export type MetaAttribute$Outbound = { key: string; value?: string | undefined; type?: string | undefined; format?: string | undefined; }; /** @internal */ export declare const MetaAttribute$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 MetaAttribute$ { /** @deprecated use `MetaAttribute$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MetaAttribute$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MetaAttribute$Outbound` instead. */ type Outbound = MetaAttribute$Outbound; } export declare function metaAttributeToJSON(metaAttribute: MetaAttribute): string; export declare function metaAttributeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=metaattribute.d.ts.map