import type { RemoteXPCFacade } from './remote-xpc';
export interface IXctestAttachmentDeletionClient {
    deleteAttachmentsByUuid(uuids: string[]): Promise<void>;
}
/**
 * Deletes XCTest screen-recording attachments on a real device via appium-ios-remotexpc
 * (testmanagerd).
 */
export declare class XctestAttachmentDeletionClient implements IXctestAttachmentDeletionClient {
    private readonly facade;
    constructor(facade: RemoteXPCFacade);
    deleteAttachmentsByUuid(uuids: string[]): Promise<void>;
}
//# sourceMappingURL=xctest-attachment-deletion-client.d.ts.map