import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Asset = { symbol: string; type: string; assetClassSymbol: string; name: string; tickSize?: number | null | undefined; unit?: string | null | undefined; sku: string | null; code: string | null; priceFile: string | null; marketDate?: Date | null | undefined; exchange?: string | null | undefined; }; /** @internal */ export declare const Asset$inboundSchema: z.ZodType; /** @internal */ export type Asset$Outbound = { symbol: string; type: string; asset_class_symbol: string; name: string; tick_size?: number | null | undefined; unit?: string | null | undefined; sku: string | null; code: string | null; price_file: string | null; market_date?: string | null | undefined; exchange?: string | null | undefined; }; /** @internal */ export declare const Asset$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 Asset$ { /** @deprecated use `Asset$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Asset$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Asset$Outbound` instead. */ type Outbound = Asset$Outbound; } export declare function assetToJSON(asset: Asset): string; export declare function assetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=asset.d.ts.map