import { Provider } from '@loopback/core'; import { S3WithSigner } from '..'; import { AwsS3Config } from '../types'; export declare class AwsS3Provider implements Provider { private readonly config; constructor(config: AwsS3Config); value(): S3WithSigner; }