Rezi
    Preparing search index...

    Type Alias AlertDialogProps

    AlertDialogProps: Readonly<
        {
            id: string;
            intent?: "info"
            | "success"
            | "warning"
            | "danger";
            message: string;
            onClose: () => void;
            title: string;
        },
    >