/**
* @file Alert2
* @author fex
*/
///
import React from 'react';
import { ClassNamesFn } from 'amis-core';
export interface AlertProps {
level: 'danger' | 'info' | 'success' | 'warning';
title?: string;
className?: string;
style?: any;
showCloseButton: boolean;
showIcon?: boolean;
icon?: string | React.ReactNode;
iconClassName?: string;
closeButtonClassName?: string;
onClose?: () => void;
classnames: ClassNamesFn;
classPrefix: string;
children?: React.ReactNode | Array;
actions?: React.ReactNode | React.ReactNode[];
}
export interface AlertState {
show: boolean;
}
export declare class Alert extends React.Component {
static defaultProps: Pick;
static propsList: Array;
constructor(props: AlertProps);
handleClick(): void;
render(): React.JSX.Element | null;
}
declare const _default: {
new (props: Pick, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps): {
ref: any;
childRef(ref: any): void;
getWrappedInstance(): any;
render(): React.JSX.Element;
context: unknown;
setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>;
state: Readonly<{}>;
refs: {
[key: string]: React.ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>, prevState: Readonly<{}>): any;
componentDidUpdate?(prevProps: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>, prevState: Readonly<{}>, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, "title" | "icon" | "iconClassName" | "children" | "onClose" | "showIcon" | "closeButtonClassName" | "actions"> & {
level?: "danger" | "info" | "success" | "warning" | undefined;
showCloseButton?: boolean | undefined;
} & {
className?: string | undefined;
} & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): void;
};
displayName: string;
contextType: React.Context;
ComposedComponent: React.ComponentType;
} & import("hoist-non-react-statics").NonReactStatics & {
ComposedComponent: typeof Alert;
};
export default _default;