interface Env { key: string; value: string; target?: string[]; type?: string; } declare const Vercel: (accessToken: string, projectId: string, teamId?: string | null | undefined) => { addEnvironmentVariables: (envs: Env[]) => Promise; removeEnvironmentVariables: (envs: Env[]) => Promise; setEnvironmentVariables: (envs: Env[]) => Promise; createProject: (name: string, envs: Env[], provider: string | undefined, owner: string, repoName: string) => Promise; }; export { Vercel };