import { z } from "zod"; export declare const ApplicationCredentialsSchema: z.ZodObject<{ applicationKey: z.ZodString; applicationSecret: z.ZodString; region: z.ZodEnum<{ eu: "eu"; us: "us"; }>; }, z.core.$strip>; export type ApplicationCredentials = z.infer;