import { SmrtObject } from '@happyvertical/smrt-core'; import { MessagingChannel, MessagingEndpointOptions } from '../types.js'; export declare class MessagingEndpoint extends SmrtObject { tenantId: string; profileId: string | null; label: string; channel: MessagingChannel; /** Provider-specific destination JSON. Hidden from generated read surfaces. */ address: string; isActive: boolean; verifiedAt: Date | null; createdAt: Date; updatedAt: Date; constructor(options?: MessagingEndpointOptions); getAddress = Record>(): T; setAddress(address: Record): void; getMaskedAddress(): string; } //# sourceMappingURL=MessagingEndpoint.d.ts.map