import * as React from 'react';
import type { ToastItem } from './services/ToastItem';
import type { ToastStack } from './services/ToastStack';
export interface ToastCardItemProps {
    item: ToastItem;
}
export declare const ToastCardItem: React.FC<ToastCardItemProps>;
export interface ToastCardItemsProps {
    stack: ToastStack;
    right?: boolean;
    bottom?: boolean;
}
export declare const ToastCardItems: React.FC<ToastCardItemsProps>;
export interface ToastCardManagerProps {
}
export declare const ToastCardManager: React.FC<ToastCardManagerProps>;
