import type { ConnectorProtocol, DeliveryResult } from "../connectors/connector.js"; import type { Notification } from "../notifications/notification.js"; import type { NotificationTarget } from "../targets/target.js"; type WithSandbox = T & { useSandbox?: boolean; }; type WithDebug = T & { debug?: boolean; }; type SendingOptions = WithDebug>; export declare function send(connector: ConnectorProtocol, notification: Notification<{}>, target: NotificationTarget, settings?: SendingOptions): Promise; export {};