import type { ReactNode } from 'react'; interface PageAlertProps { message: string; spanText: string; onClose: VoidFunction; buttonEnd?: ReactNode; iconStart: ReactNode; } declare const PageAlert: (props: PageAlertProps) => import("react/jsx-runtime").JSX.Element; export { PageAlert };