declare const ServiceUserType: { readonly AUTOMATION_USER: "AUTOMATION_USER"; readonly SYNC_USER: "SYNC_USER"; readonly WORKFLOW_USER: "WORKFLOW_USER"; }; declare const NOCO_SERVICE_USERS: { readonly AUTOMATION_USER: { readonly id: "usrautomation"; readonly email: "automation@nocodb.com"; readonly display_name: "NocoDB Automation"; readonly email_verified: true; }; readonly SYNC_USER: { readonly id: "usrsync"; readonly email: "sync-service@nocodb.com"; readonly display_name: "NocoDB Sync"; readonly email_verified: true; }; readonly WORKFLOW_USER: { readonly id: "usrworkflow"; readonly email: "workflow-service@nocodb.com"; readonly display_name: "NocoDB Workflow"; readonly email_verified: true; }; }; type ServiceUserKey = keyof typeof NOCO_SERVICE_USERS; declare const isServiceUser: (user: any, serviceType?: ServiceUserKey | ServiceUserKey[]) => boolean; export { ServiceUserType, NOCO_SERVICE_USERS, isServiceUser };