import React from "react"; export declare const AlertItem: import("styled-components").StyledComponentClass<{ type: string; } & React.HTMLProps, {}, { type: string; } & React.HTMLProps>; declare type Props = { type: string; children: React.ReactNode; }; declare type State = { visible: boolean; }; export default class AlertStyled extends React.Component { static defaultProps: { type: string; }; private timeout?; constructor(props: Props); componentWillUnmount(): void; render(): JSX.Element; } export {}; //# sourceMappingURL=Alert.d.ts.map