Type Alias OnIntentHook

OnIntentHook: ((data: {
    allow: (() => void);
    deny: (() => void);
    intent: Intent;
    refresh: (() => Promise<Intent>);
}) => void)