import { S3 } from "@aws-sdk/client-s3";
export declare const uploadToS3: ({ s3Client, Bucket, Key, filePath, }: {
    s3Client: S3;
    Bucket: string;
    Key: string;
    filePath: string;
}) => Promise<import("@aws-sdk/client-s3").AbortMultipartUploadCommandOutput>;
