import React, { MouseEventHandler, PropsWithChildren } from 'react'; type AlertStatusSummaryButtonProps = { onClick: MouseEventHandler; }; export declare const AlertStatusSummaryButton: ({ children, onClick, }: PropsWithChildren) => React.JSX.Element; export {};