import { JSX } from 'solid-js/jsx-runtime'; export type AlertButtonProps = JSX.ButtonHTMLAttributes & { children: JSX.Element; message: string; onAlertClose?: () => void; }; export declare function AlertButton(props: AlertButtonProps): JSX.Element;