import React from 'react';
import type { SnackbarProps, SnackbarRef } from './components';
import type { SnackbarCommonProps } from './types';
export declare const cnSnackbar: import("@bem-react/classname").ClassNameFormatter;
export type SnackbarProviderRef = SnackbarRef;
export type SnackbarProviderProps = Partial<SnackbarProps> & SnackbarCommonProps & {
    /** Максимальное количество одновременно отображенных сообщений */
    maxMessages?: number;
};
export declare const SnackbarProvider: React.ForwardRefExoticComponent<Partial<SnackbarProps> & SnackbarCommonProps & {
    /** Максимальное количество одновременно отображенных сообщений */
    maxMessages?: number;
} & React.RefAttributes<HTMLDivElement>>;
