/**
 * Device Management Commands
 *
 * Commands for managing authorized devices.
 *
 * @package @ace-sdk/cli
 * @since 3.6.0
 */
/**
 * ace-cli devices list
 * List all authorized devices for the current user
 */
export declare function devicesListCommand(): Promise<void>;
/**
 * ace-cli devices rename <id> <name>
 * Rename a device for easier identification
 */
export declare function devicesRenameCommand(deviceId: string, newName: string): Promise<void>;
/**
 * ace-cli devices remove <id>
 * Remove a device and revoke all its sessions
 */
export declare function devicesRemoveCommand(deviceId: string, options: {
    yes?: boolean;
}): Promise<void>;
/**
 * ace-cli devices limit
 * Show device limit information
 */
export declare function devicesLimitCommand(): Promise<void>;
//# sourceMappingURL=devices.d.ts.map