use Arc;
/// A clipboard operation for which Ghostty requires application approval.
/// Data awaiting approval. The text may contain sensitive clipboard contents.
/// Synchronous approval policy. Return `true` to accept the operation.
///
/// Called at the native boundary: do not block, re-enter the terminal, or open
/// a modal event loop. A missing callback or a panic denies the request. Only
/// operations requiring confirmation invoke this policy; Ghostty's explicit
/// `allow`/`deny` configuration continues to apply.
///
/// Denied reads return an empty clipboard response; denied pastes insert nothing.
pub type ClipboardApprovalCallback = ;