import * as React from 'react'; export interface InformerProps { informerIntent: InformerIntent; content?: React.ReactNode; header?: React.ReactNode; className?: string; icon?: string; isIconShown?: boolean; isCloseButtonShown?: boolean; onCloseClick?: () => void; closeButtonLabel?: string; children?: React.ReactNode; headerPlacement?: InformerHeaderPlacement; } export declare const enum InformerIntent { Danger = "danger", Warning = "warning", Success = "success", Default = "default" } export declare const enum InformerHeaderPlacement { Inline = "inline", NewLine = "new-line" } export declare function Informer(props: InformerProps): JSX.Element;