import type { Transport } from '@23blocks/contracts'; import type { AssetAlert, CreateAssetAlertRequest } from '../types/alert.js'; export interface AlertsService { /** * Get an asset alert by unique ID. * @returns The matching AssetAlert record. */ get(uniqueId: string): Promise; /** * Create and evaluate a new asset alert. * @returns The newly created AssetAlert record. */ create(data: CreateAssetAlertRequest): Promise; /** * Delete an asset alert. */ delete(uniqueId: string): Promise; } export declare function createAlertsService(transport: Transport, _config: { apiKey: string; }): AlertsService; //# sourceMappingURL=alerts.service.d.ts.map