import { Plugin } from '@servicenow/sdk-build-core'; /** * Creates a User Preference (sys_user_preference). * * @see https://docs.servicenow.com/csh?topicname=c_UserPreferences.html&version=latest * * @param config - an object containing the following properties: * * **$id** - unique id for the record, typically using `Now.ID["value"]` * * **name** - name of the feature or functionality * * **type** - the data type of entry accepted for the `value` * * **value** - current setting for this record * * **description**? - short description of the feature or functionality * * **system**? - whether this record indicates the system-wide default */ export declare const UserPreferencePlugin: Plugin;