import { type IApplyArgs } from "./Attachments.js"; export interface ITarData { files: Map; } type TarCache = Map; export declare const createTarAttachment: (_cache?: TarCache | undefined) => ({ p }: IApplyArgs) => Promise; export {};