import { z } from "zod";
export declare const credentialSchema: z.ZodObject<{
projectId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
token: z.ZodString;
}, "strip", z.ZodTypeAny, {
projectId: string | number;
token: string;
}, {
projectId: string | number;
token: string;
}>;