import * as AWS from '@aws-sdk/client-s3'; import type { Adapter } from '../../types'; export interface Args { acl?: 'private' | 'public-read'; /** * Bucket name to upload files to. * * Must follow [AWS S3 bucket naming conventions](https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html). */ bucket: string; /** * AWS S3 client configuration. Highly dependent on your AWS setup. * * [AWS.S3ClientConfig Docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-s3/interfaces/s3clientconfig.html) */ config: AWS.S3ClientConfig; } export declare const s3Adapter: ({ acl, bucket, config }: Args) => Adapter; //# sourceMappingURL=index.d.ts.map