import { TranslationTopic } from '../../TranslationBuilder';
import type { Notification } from 'stream-chat';
import type { NotificationTranslatorOptions } from './types';
import type { TranslationTopicOptions, Translator } from '../../index';
export declare const defaultNotificationTranslators: Record<string, Translator<NotificationTranslatorOptions>>;
export declare class NotificationTranslationTopic extends TranslationTopic<NotificationTranslatorOptions> {
    constructor({ i18next, translators }: TranslationTopicOptions);
    translate: (value: string, key: string, options: {
        notification?: Notification;
    }) => string;
}
