import { S3LocalService } from "./localAction";
import type { IncomingHttpHeaders, ServerResponse, IncomingMessage } from "http";
export declare class PutObjectTaggingAction extends S3LocalService {
    bucket: string;
    key: string;
    constructor(url: URL, headers: IncomingHttpHeaders);
    exec(res: ServerResponse, req: IncomingMessage): Promise<void>;
}
