export type NotificationMessage = string; export interface AthenaNotificationPort { error: (message: string) => void; success: (message: string) => void; } /** @deprecated Use {@link AthenaNotificationPort}. */ export type AuthNotificationPort = AthenaNotificationPort; export declare function silentAuthNotificationPort(): AthenaNotificationPort;