export type AlertProps = { message: string; onButtonClick?: () => void; }; export declare function Alert(props: AlertProps): any;