import { type BlueprintRobotConfig, type BlueprintRobotResource } from '../index.js';
/**
 * Defines a Robot token for automated access. Has a token property provided during deployment that can be referenced by other resources.
 * ```
 * defineRobot({
 *   name: 'my-robot',
 *   label: 'My Robot',
 *   memberships: [{
 *     resourceType: 'project',
 *     resourceId: projectId,
 *     roleNames: ['custom-robot-role'],
 *   }],
 * })
 * ```
 *
 * @param parameters The robot configuration
 */
export declare function defineRobot(parameters: BlueprintRobotConfig): BlueprintRobotResource;
