import React from "react";
export interface AlertConfirmationProps {
    button: {
        name: string;
        variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
    };
    title: string;
    description: string;
    actions: {
        confirm: {
            name: string;
            action?: () => void;
        };
        cancel: {
            name: string;
        };
    };
}
declare const AlertConfirmation: React.FC<AlertConfirmationProps>;
export { AlertConfirmation };
