import type { CustomRunnerOptions } from 'nx-remotecache-custom';
import type { RemoteCacheImplementation } from 'nx-remotecache-custom/types/remote-cache-implementation';
export interface S3Options {
    bucket?: string;
    endpoint?: string;
    forcePathStyle?: boolean;
    prefix?: string;
    profile?: string;
    region?: string;
}
export declare const setupS3TaskRunner: (options: CustomRunnerOptions<S3Options>) => Promise<RemoteCacheImplementation>;
