import { z } from 'zod'; export declare const CliLoopbackHost: { readonly V4: "127.0.0.1"; readonly V6: "[::1]"; readonly Localhost: "localhost"; }; export type CliLoopbackHost = typeof CliLoopbackHost[keyof typeof CliLoopbackHost]; export declare const cliLoginParamsSchema: z.ZodObject<{ port: z.ZodCoercedNumber; state: z.ZodString; host: z.ZodEnum<{ "127.0.0.1": "127.0.0.1"; "[::1]": "[::1]"; localhost: "localhost"; }>; }, z.core.$strip>; export type CliLoginParams = z.infer; export declare const cliLoginMintRequestSchema: z.ZodObject<{ port: z.ZodCoercedNumber; state: z.ZodString; host: z.ZodEnum<{ "127.0.0.1": "127.0.0.1"; "[::1]": "[::1]"; localhost: "localhost"; }>; }, z.core.$strip>; export type CliLoginMintRequest = z.infer; export declare const cliLoginMintResponseSchema: z.ZodObject<{ redirect_to: z.ZodString; code: z.ZodString; }, z.core.$strip>; export type CliLoginMintResponse = z.infer; export declare const cliLoginExchangeRequestSchema: z.ZodObject<{ code: z.ZodString; }, z.core.$strip>; export type CliLoginExchangeRequest = z.infer; export declare const cliLoginExchangeResponseSchema: z.ZodObject<{ token: z.ZodString; email: z.ZodString; }, z.core.$strip>; export type CliLoginExchangeResponse = z.infer; //# sourceMappingURL=cli-login.d.ts.map