import { CustomRunnerOptions } from "../types/custom-runner-options";
import { RemoteCacheImplementation } from "../types/remote-cache-implementation";
export interface S3Options {
    bucket?: string;
    endpoint?: string;
    forcePathStyle?: boolean;
    prefix?: string;
    profile?: string;
    readOnly?: boolean;
    writeOnly?: boolean;
    region?: string;
}
declare const _default: (options: CustomRunnerOptions<S3Options>) => Promise<RemoteCacheImplementation>;
export default _default;
