import { z } from 'zod'; export declare const CryptoExchangeSchema: z.ZodObject<{ name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; }, { name: string; }>; export type CryptoExchange = z.infer; export declare const CryptoSymbolSchema: z.ZodObject<{ description: z.ZodString; displaySymbol: z.ZodString; symbol: z.ZodString; }, "strip", z.ZodTypeAny, { symbol: string; description: string; displaySymbol: string; }, { symbol: string; description: string; displaySymbol: string; }>; export type CryptoSymbol = z.infer; export { QuoteSchema as CryptoQuoteSchema, type Quote as CryptoQuote } from './common.js'; export { CandleSchema as CryptoCandleSchema, type Candle as CryptoCandle } from './common.js'; //# sourceMappingURL=crypto.d.ts.map