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