import * as React from 'react'; import { AlertProps } from '@mui/material/Alert'; import { ZButtonProps } from '../types'; export interface ZAlertProps extends Omit { open?: boolean; handleClose?: () => void; action?: { label?: React.ReactNode; onClick?: () => void; buttonProps?: ZButtonProps; node?: React.ReactNode; }; icon?: React.ReactNode; hideIcon?: boolean; } export declare const ZAlert: (props: ZAlertProps) => JSX.Element;