import { z } from 'zod'; export declare const ApiUserSchema: z.ZodObject<{ distinct_id: z.ZodString; organizations: z.ZodArray>; team: z.ZodObject<{ id: z.ZodNumber; organization: z.ZodUUID; }, z.core.$strip>; organization: z.ZodObject<{ id: z.ZodUUID; }, z.core.$strip>; }, z.core.$strip>; export declare const ApiProjectSchema: z.ZodObject<{ id: z.ZodNumber; uuid: z.ZodUUID; organization: z.ZodUUID; api_token: z.ZodString; name: z.ZodString; }, z.core.$strip>; export type ApiUser = z.infer; export type ApiProject = z.infer; export declare function fetchUserData(accessToken: string, baseUrl: string): Promise; export declare function fetchProjectData(accessToken: string, projectId: number, baseUrl: string): Promise;