import { z } from "zod"; export declare const EnvironmentSchema: z.ZodEnum<{ demo: "demo"; real: "real"; }>; export type Environment = z.infer; export declare const ConfigSchema: z.ZodObject<{ apiKey: z.ZodString; userKey: z.ZodString; environment: z.ZodDefault>; }, z.core.$strip>; export type EtoroConfig = z.infer;