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