import './style.scss'; import type { IARCProps } from '@adam-sv/arc'; export interface IArcAlertModalProps extends IARCProps { text: string; title?: string; buttonText?: string; isOpen: boolean; setIsOpen: (isOpen: boolean) => void; portalTargetElement?: Element | null; } export declare const AlertModal: ({ buttonText, className, id, isOpen, portalTargetElement, setIsOpen, style, text, title, }: IArcAlertModalProps) => import("react/jsx-runtime").JSX.Element;