UNPKG

mantine-alert-system

Version:
10 lines 433 B
/// <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