nice-ui
Version:
React design system, components, and utilities
17 lines (16 loc) • 561 B
TypeScript
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>;