import { RemoteOptions } from './remote-options.js'; export type PutFileOptions = { filepath: string; keypath: string; cacheControl?: string; }; export declare function putFile({ Client, Bucket, Dry }: RemoteOptions, { filepath, keypath, cacheControl }: PutFileOptions): Promise;