import { Plugin } from '@servicenow/sdk-build-core'; /** * Creates a Cross Scope Privilege record (`sys_scope_privilege`). * * @see https://docs.servicenow.com/csh?topicname=c_CrossScopePrivilegeRecord.html&version=latest * * @param config - an object containing the following properties: * * **$id** - unique id for the record, typically using `Now.ID["value"]` * * **operation** - operation the script performs on the target * * **status** - authorization for this record * * **targetName** - name of the table, script include, or script object being requested * * **targetScope** - application whose resources are being requested * * **targetType** - type of request */ export declare const CrossScopePrivilegePlugin: Plugin;