import React, { ReactElement } from "react"; export interface WarningProps { title: string; content: string | ReactElement; footer?: string | ReactElement; show: boolean; type: string; icon?: ReactElement; containerStyles?: React.CSSProperties; onClick?: (e: React.MouseEvent) => void; } export declare const Warning: ({ title, content, footer, show, type, icon, containerStyles, onClick, }: WarningProps) => JSX.Element;