import { z } from 'zod';

declare const ClientOptionsSchema: z.ZodObject<{
    /**
     * Your server URL
     */
    serverUrl: z.ZodString;
    /**
     * Your instance token or global API key
     */
    token: z.ZodString;
    /**
     * Your instance name
     */
    instance: z.ZodString;
}, "strip", z.ZodTypeAny, {
    serverUrl: string;
    token: string;
    instance: string;
}, {
    serverUrl: string;
    token: string;
    instance: string;
}>;
type ClientOptions = z.infer<typeof ClientOptionsSchema>;

export { type ClientOptions, ClientOptionsSchema };
