zent
Version:
一套前端设计语言和基于React的实现
8 lines (7 loc) • 346 B
TypeScript
/// <reference types="react" />
import { IAlertProps } from '../Alert';
export declare const AlertItem: import("react").ForwardRefExoticComponent<Omit<IAlertProps, "outline" | "closed" | "background"> & {
onAlertItemClose?: () => void;
classItemName?: string;
} & import("react").RefAttributes<HTMLDivElement>>;
export default AlertItem;