mantine-alert-system
Version:
Alert system based on Mantine components
10 lines • 433 B
TypeScript
/// <reference types="react" />
import type { AlertData, AlertTransitionProps } from './types';
import type { TransitionStatus } from "./transitions";
export interface AlertItemProps extends AlertData, AlertTransitionProps {
onHide(): void;
nodeRef: React.ForwardedRef<HTMLDivElement>;
transitionStatus: TransitionStatus;
}
export declare const AlertItem: React.FC<AlertItemProps>;
//# sourceMappingURL=AlertItem.d.ts.map