import { Plugin } from '@servicenow/sdk-build-core'; /** * Creates a Dashboard (`par_dashboard`). * * @param config - an object containing the following properties: * * **$id** - unique id for the record, typically using `Now.ID["value"]` * * **name** - The name of the dashboard * * **tabs**? - Array of dashboard tabs (each with $id, name, and widgets array) * * **visibilities**? - Array of visibility rules (each with $id and experience reference) * * **permissions**? - Array of user permissions (each with $id, user, can_read, can_write, can_share, owner) */ export declare const DashboardPlugin: Plugin;