import React from "react";
interface AlertDialogProps {
    title: string;
    message: string;
}
declare const StkAlert: React.FC<AlertDialogProps>;
export default StkAlert;
