import type { S3Options } from ".";
import { CustomRunnerOptions } from "../types/custom-runner-options";
export declare const buildCommonCommandInput: ({ bucket, prefix, filename, }: {
    bucket: string | undefined;
    prefix: string;
    filename: string;
}) => {
    Bucket: string;
    Key: string;
};
export declare const isReadOnly: (options: CustomRunnerOptions<S3Options>, envReadOnly: string) => boolean;
export declare const isWriteOnly: (options: CustomRunnerOptions<S3Options>, envWriteOnly: string) => boolean;
