/// <reference types="react" />
import NotificationIcon from '../components/NotificationIcon';
import Notification from '../components/Notification';
import SlideTransition from '../components/SlideTransition';
import GrowTransition from '../components/GrowTransition';
import FadeTransition from '../components/FadeTransition';
export declare type ComponentContextType = {
    Transition?: typeof SlideTransition | typeof GrowTransition | typeof FadeTransition;
    NotificationIcon?: typeof NotificationIcon;
    Notification?: typeof Notification;
};
export declare const ComponentsContext: import("react").Context<ComponentContextType>;
