/// <reference types="node" />
interface Options {
    socket: any;
    project_id: string;
    uuid: string;
    blob: Buffer;
    ttlSeconds?: number;
}
export default function handleBlob({ socket, project_id, uuid, blob, ttlSeconds, }: Options): Promise<void>;
export {};
