import { S3 } from '@aws-sdk/client-s3';
import { ProjectGraph, ProjectGraphProjectNode } from '@nx/devkit';

declare const r2UploadFile: (client: S3, bucketName: string, projectPath: string, fileName: string, version: string, fileContent: string, contentType?: string, isDryRun?: boolean) => Promise<void>;
declare const getInternalDependencies: (projectName: string, graph: ProjectGraph) => ProjectGraphProjectNode[];

export { getInternalDependencies, r2UploadFile };
