/**
 * Delete all visitor data for a specific owner (matched by email).
 *
 * Usage:
 *   ts-node -r dotenv/config src/scripts/delete-owner-visitors.ts <email>             # dry-run
 *   ts-node -r dotenv/config src/scripts/delete-owner-visitors.ts <email> --confirm   # actually delete
 *
 * What "all visitor data" means:
 *   - Visitor rows owned by this owner (every visitor in their workspace)
 *   - VisitorScanLog rows for those visitors
 *   - VisitorRequest rows owned by this owner (walk-ins, which may reference
 *     a Visitor row via visitorId)
 *
 * What this DOES NOT touch:
 *   - The Owner row itself (login + workspace stays alive)
 *   - Admins, Approvers, Checkpoints, Departments, Reasons, EmailTemplates
 *   - Any other owner's data
 *
 * All deletes happen inside a single transaction. If anything fails, nothing
 * is removed.
 */
export {};
//# sourceMappingURL=delete-owner-visitors.d.ts.map